-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
31 lines (27 loc) · 957 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
REQUIRED = [
'Flask', 'qrcode', 'Pillow'
]
setuptools.setup(
name="polarishub_flask",
version="0.1.17",
author="Guochao Xie & Senyue Hao",
author_email="[email protected]",
description="PolarisHub Flask version",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/XieGuochao/polarishub_flask",
packages=setuptools.find_packages(),
install_requires=REQUIRED,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
entry_points = {
'console_scripts': ['phub=polarishub_flask.app:main', 'polarishub=polarishub_flask.app:main']
},
package_data = {'':['files/*', 'files/*/*', 'server/*/*', 'temp/*', "server/*", "server/*/*/*"]}
)