-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
33 lines (28 loc) · 911 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
#!/usr/bin/env python
from setuptools import find_packages, setup
with open("requirements.txt") as req_file:
install_requires = [
req for req in req_file if req.strip() and not req.lstrip().startswith("#")
]
with open("README.md") as readme_file:
description = readme_file.read()
setup(
name="hub20",
url="https://github.com/mushroomlabs/hub20",
long_description=description,
version="0.4.2",
python_requires="~=3.7",
packages=find_packages(),
include_package_data=True,
install_requires=install_requires,
zip_safe=False,
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Environment :: Web Environment",
"Framework :: Django",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
],
keywords="hub20 ethereum payment-gateway",
)