forked from USEPA/ElectricityLCI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (35 loc) · 1.43 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
from distutils.core import setup
setup(
name='ElectricityLCI',
version='1.0.1',
packages=['electricitylci'],
package_data={'electricitylci': ["data/*.*", "output/.gitignore", "data/EFs/*.*", "data/petroleum_inventory/*.*","modelconfig/*.yml"]},
url='https://github.com/USEPA/ElectricityLCI',
license='CC0',
author='Matt Jamieson, Wesley Ingwersen, Greg Schively, TJ Ghosh, Ben Young, Troy Hottle',
author_email='ingwersen.wesley@epa.gov',
description='Create life cycle inventory data for regionalized electricity generation, mix of generation, mix of consumption, and distribution to the end-user in the United States.',
install_requires=[
'fedelemflowlist @ git+https://github.com/USEPA/Federal-LCA-Commons-Elementary-Flow-List@v1.0.2#egg=fedelemflowlist',
'StEWI @ git+https://github.com/USEPA/standardizedinventories@v0.9.3#egg=StEWI',
'numpy>=1.14',
'pandas>=0.24',
'olca-ipc>=0.0.6',
'openpyxl>=2.5',
'matplotlib>=2.2',
'seaborn>=0.9',
'sympy>=1.2',
'xlrd>=1.1',
'pyyaml>=5.1',
'requests>=2.2'
],
long_description=open('README.md').read(),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: IDE",
"Intended Audience :: Science/Research",
"License :: CC0",
"Programming Language :: Python :: 3.x",
"Topic :: Utilities",
]
)