-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (31 loc) · 1.11 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
from platform import python_version
from setuptools import setup, find_packages
setup(
name="afs_fastapi",
version="0.0.1-alpha",
packages=find_packages(),
install_requires=[
# List dependencies here, e.g., "fastapi", "pydantic"
"fastapi",
"pydantic",
"uvicorn",
],
python_requires=">=3.8, <3.13",
author="D Deryl Downey",
author_email="[email protected]",
description="Automated Farming System API",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
keywords="automated farming system fastapi afs_api",
project_urls={
"Bug Tracker": "https://github.com/dderyldowney/afs_fastapi/issues",
"Documentation": "https://github.com/dderyldowney/afs_fastapi/blob/main/README.md",
"Source Code": "https://github.com/dderyldowney/afs_fastapi",
},
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: " + python_version(),
"Operating System :: OS Independent",
],
)