You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
744 B
23 lines
744 B
#!/usr/bin/env python3
|
|
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
name="project_amber",
|
|
version="0.0.5",
|
|
description="The backend app of a note-taking app, Project Amber",
|
|
url="https://git.tdem.in/tdemin/amber",
|
|
author="Timur Demin",
|
|
author_email="me@tdem.in",
|
|
license="MIT",
|
|
classifiers=[
|
|
"Development Status :: 3 - Alpha", "License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3.8"
|
|
"Programming Language :: Python :: 3"
|
|
],
|
|
keywords="tasks backend flask",
|
|
project_urls={"Homepage": "https://git.tdem.in/tdemin/amber"},
|
|
packages=["project_amber"],
|
|
install_requires=["flask", "flask-cors", "flask-sqlalchemy", "bcrypt"],
|
|
python_requires=">=3.8"
|
|
)
|
|
|