-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
32 lines (29 loc) · 1.17 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
#!/usr/bin/env python
from setuptools import setup, find_packages
import os
import multiprocessing, logging # AJ: for some reason this is needed to not have "python setup.py test" freak out
module_dir = os.path.dirname(os.path.abspath(__file__))
if __name__ == "__main__":
setup(
name='chronograph',
version='1.0.0',
description='Chronograph is a simple stopwatch / chronometer / chronograph for timing Python code.',
long_description=open(os.path.join(module_dir, 'README.rst')).read(),
url='https://github.com/computron/chronograph',
author='Anubhav Jain',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
package_data={},
zip_safe=False,
install_requires=[],
extras_require={},
classifiers=['Programming Language :: Python :: 2.7',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Utilities'],
test_suite='nose.collector',
tests_require=['nose'],
scripts=[]
)