forked from IndEcol/pymrio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (41 loc) · 1.57 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
from setuptools import setup, find_packages
exec(open('pymrio/version.py').read())
setup(
name='pymrio',
description=(
'A python module for automating input output '
'calculations and generating reports'),
long_description=open('README.rst').read(),
url='https://github.com/konstantinstadler/pymrio',
author='Konstantin Stadler',
author_email='[email protected]',
version=__version__, # noqa
packages=find_packages(),
include_package_data=True,
package_data={
'': ['*.txt', '*.dat', '*.doc', '*.rst', '*.json'],
},
# This some needs to be here and in requirments.txt (for conda)
install_requires=['pandas >= 0.25.0',
'matplotlib >= 2.0.0',
'requests >= 2.18',
'numpy >= 1.13.4',
'xlrd >= 1.1.0'
],
classifiers=[
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3 :: Only',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Utilities',
],
)