-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (31 loc) · 1.11 KB
/
setup.py
File metadata and controls
35 lines (31 loc) · 1.11 KB
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
#!/usr/bin/env python
from setuptools import setup
from os import path
from codecs import open
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='cslib',
version='0.1.0',
long_description=long_description,
description='Common library for the pyElsepa and CSTool packages.',
license='Apache v2',
author='Johan Hidding',
author_email='j.hidding@esciencecenter.nl',
url='https://github.com/eScatter/pyelsepa.git',
packages=['cslib'],
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Environment :: Console',
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Physics'],
install_requires=['pint==0.8.1', 'numpy==1.13.0', 'scipy==0.19.1', 'noodles[numpy,prov]==0.2.3'],
extras_require={
'test': ['pytest', 'sphinx']
},
)