forked from Pylons/hupper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (43 loc) · 1.68 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
from setuptools import find_packages, setup
def readfile(name):
with open(name) as f:
return f.read()
readme = readfile('README.rst')
changes = readfile('CHANGES.rst')
docs_require = ['watchdog', 'Sphinx', 'pylons-sphinx-themes']
tests_require = ['watchdog', 'pytest', 'pytest-cov', 'mock']
setup(
name='hupper',
version='1.11',
description=(
'Integrated process monitor for developing and reloading daemons.'
),
long_description=readme + '\n\n' + changes,
long_description_content_type='text/x-rst',
author='Michael Merickel',
author_email='[email protected]',
url='https://github.com/Pylons/hupper',
license='MIT',
packages=find_packages('src', exclude=['tests']),
package_dir={'': 'src'},
include_package_data=True,
python_requires='>=3.7',
extras_require={'docs': docs_require, 'testing': tests_require},
entry_points={"console_scripts": ["hupper = hupper.cli:main"]},
zip_safe=False,
keywords='server daemon autoreload reloader hup file watch process',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],
)