-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
55 lines (47 loc) · 1.38 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
from setuptools import setup, find_packages
with open('README.md', 'r', encoding='utf-8') as f:
readme = f.read()
packages = find_packages("src")
print("packages", packages)
setup(
name='reloadex',
version='0.6',
url='https://github.com/iljau/reloadex',
license='MIT',
author='Ilja Umov',
author_email='',
description='Restart WSGI server on code changes',
long_description=readme,
long_description_content_type='text/markdown',
packages=packages,
package_dir={"": "src"},
entry_points = {
'console_scripts': [
'reloadex=reloadex.reloader:main',
],
},
install_requires=[
'pywin32;platform_system=="Windows"',
'pathspec>=0.5.9'
],
extras_require={
'dev': [
'flask',
'uwsgi',
'waitress',
]
},
keywords='reload wsgi',
# https://pypi.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
# 'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Internet :: WWW/HTTP :: WSGI',
],
)