forked from alphagov/unicornherder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (35 loc) · 1.07 KB
/
setup.py
File metadata and controls
44 lines (35 loc) · 1.07 KB
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
import os
import sys
from setuptools import setup, find_packages
from unicornherder import __version__
install_requires = [
'psutil>=0.5.1',
]
if sys.version_info < (2, 7):
install_requires.append('argparse')
HERE = os.path.dirname(__file__)
try:
long_description = open(os.path.join(HERE, 'README.rst')).read()
except:
long_description = None
setup(
name='unicornherder',
version=__version__,
packages=find_packages(),
# metadata for upload to PyPI
author='Nick Stenning',
author_email='nick@whiteink.com',
maintainer='Government Digital Service',
maintainer_email='gds-operations-open-source@digital.cabinet-office.gov.uk',
url='https://github.com/gds-operations/unicornherder',
description='Unicorn Herder: manage daemonized (g)unicorns',
long_description=long_description,
license='MIT',
keywords='sysadmin process supervision unicorn gunicorn upstart',
install_requires=install_requires,
entry_points={
'console_scripts': [
'unicornherder = unicornherder.command:main'
]
}
)