-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
46 lines (37 loc) · 1.45 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
34
35
36
37
38
39
40
41
42
43
44
45
46
# -*- coding: utf-8 -*-
"""
Created on Wed May 10 09:36:41 2017
@author: h parks
"""
from setuptools import setup
__version__ = None
with open('metrolopy/version.py') as f:
exec(f.read())
with open("README.md", "r") as fh:
long_description = fh.read()
setup(name = 'metrolopy',
version = __version__,
description = 'tools for dealing with measured quantities: uncertainty propagation and unit conversion',
long_description=long_description,
long_description_content_type="text/markdown",
author = 'Harold Parks, National Research Council Canada',
author_email = '[email protected]',
url = 'http://nrc-cnrc.github.io/MetroloPy/',
packages = ['metrolopy','metrolopy.tests'],
package_data = {'metrolopy':['license.txt']},
python_requires='>=3.5',
install_requires=['numpy>=1.13','scipy','matplotlib','pandas'],
extras_require = {'pretty':['IPython']},
zip_safe = True,
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Framework :: Jupyter",
"Framework :: IPython",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Topic :: Scientific/Engineering :: Physics"
]
)