forked from coddingtonbear/python-measurement
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (29 loc) · 956 Bytes
/
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
import multiprocessing
from setuptools import setup, find_packages
requirements = []
with open('requirements.txt', 'r') as in_:
requirements = in_.readlines()
setup(
name='measurement',
version='1.7.3',
url='http://github.com/coddingtonbear/python-measurement/',
description='Easily use and manipulate unit-aware measurements in Python',
author='Adam Coddington',
author_email='[email protected]',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Utilities',
],
packages=find_packages(),
install_requires=requirements,
test_suite='nose.collector',
tests_require=[
'nose',
]
)