-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
40 lines (33 loc) · 980 Bytes
/
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
import reflux
import setuptools
readme = open("README.md").read()
url = "https://github.com/frissyn/Reflux"
setuptools.setup(
name="reflux",
license="MIT",
author="frissyn",
description=reflux.__doc__,
version=reflux.__version__,
url=url,
project_urls={
"Source Code": url,
"Pull Requests": url + "/pulls",
"Issue Tracker": url + "/issues",
"Documentation": url + "/tree/master/docs"
},
long_description=readme,
long_description_content_type="text/markdown",
python_requires=">=3.7.0",
install_requires=["pyyaml"],
zip_safe=False,
packages=["reflux"],
include_package_data=True,
classifiers=[
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development"
]
)