-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (39 loc) · 1.26 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
34
35
36
37
38
39
40
41
42
import os
from setuptools import setup, find_packages
from pathlib import Path
long_description: str = Path(Path.cwd(), "README.md").read_text()
version: str = os.environ.get("RELEASE_VERSION")
setup(
name="AutoMD",
version=version,
url="https://github.com/cliftbar/automd",
license="MIT",
author="Cameron Barclift",
author_email="cwbarclift@gmail.com",
description="AutoMD is a documentation library for Flask APIs build with FlaskRESTful and Webargs.",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(include=["automd", "automd.*"]),
python_requires=">=3.6",
zip_safe=False,
include_package_data=True,
platforms="any",
install_requires=[
"flask",
"flask-restful",
"webargs",
"apispec",
"pyyaml",
"marshmallow",
"werkzeug"
],
classifiers=[
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules"
]
)