-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
27 lines (23 loc) · 868 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open("README", "r") as fp:
long_description = fp.read()
setup(name='magnitude',
version='1.0.1',
description='Python library for computing with numbers with units',
long_description=long_description,
author='Juan Reyero',
author_email='juan@juanreyero.com',
url='http://juanreyero.com/open/magnitude/',
py_modules=['magnitude'],
classifiers=[
# "Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries"
])