-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
61 lines (50 loc) · 1.63 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import setuptools, os
from setuptools import setup
PACKAGE_NAME = "hafapiserver"
VERSION_MAIN = 0
VERSION_SUB = 0
VERSION_FIX = 9
requires = [
'haf',
'twine',
'flask',
'flask_restful',
'jinja2',
'setuptools'
]
with open('ReadMe.md', encoding='utf8') as f:
long_description = f.read()
def package_files(directory):
paths = []
for (path, directories, filenames) in os.walk(directory):
for filename in filenames:
print(filename)
paths.append(os.path.join('..', path, filename))
return paths
setup(
name = PACKAGE_NAME,
version = f"{VERSION_MAIN}.{VERSION_SUB}.{VERSION_FIX}",
author = 'wei.meng',
author_email = '[email protected]',
long_description = long_description,
long_description_content_type='text/markdown',
url='http://github.com/hautof/haf-plugin-webserver',
packages=setuptools.find_packages(),
python_requires='>=3.6',
install_requires=requires,
entry_points={"haf": ["hafapiserver=hafapiserver"]},
py_modules=["hafapiserver"],
platforms='Posix; MacOS X; Windows',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Testing',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)