-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
26 lines (25 loc) · 1.09 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
from setuptools import setup
setup(
name="IO Model Builder",
version="1.2.2",
author="Michael Srocka (Greendelta), Wesley Ingwersen (US Environmental Protection Agency)",
author_email="ingwersen.wesley@epa.gov",
description="iomb is a package for creating environmentally extended "
"input-output models",
license="CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
keywords=['economic input-output models','supply and use framework','EEIO','life cycle assessment','LCA','USEEIO'],
url="https://github.com/USEPA/IO-Model-Builder",
packages=['iomb'],
package_data={'iomb': ["data/*.*"]},
install_requires=['numpy', 'pandas>=0.17', 'matplotlib', 'flask'],
python_requires='>=3',
long_description=open('README.rst').read(),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
"Programming Language :: Python :: 3.5",
"Topic :: Utilities",
]
)