-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
33 lines (31 loc) · 1.09 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
#!/usr/bin/env python
from setuptools import setup
__version__ = '0.2.2'
setup(
name='highlander-one',
version=__version__,
author='Christopher T. Cannon',
author_email='[email protected]',
description='A simple decorator to ensure that your '
'program is only running once on a system.',
url='https://github.com/chriscannon/highlander',
install_requires=[
'funcy>=1.4',
'psutil>=2.2.1'
],
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
download_url='https://github.com/chriscannon/highlander/tarball/{0}'.format(__version__),
packages=['highlander'],
test_suite='tests.highlander_tests.get_suite',
)