forked from USEPA/LCIAformatter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (30 loc) · 1.19 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
from setuptools import setup
setup(
name="lciafmt",
version="1.1.3",
packages=["lciafmt"],
package_dir={'lciafmt': 'lciafmt'},
package_data={'lciafmt': ["data/*.*"]},
include_package_data=True,
python_requires=">=3.9",
install_requires=["fedelemflowlist @ git+https://github.com/USEPA/fedelemflowlist.git#egg=fedelemflowlist",
"esupy @ git+https://github.com/USEPA/esupy.git#egg=esupy",
"olca-schema>=0.0.11",
"pandas>=0.22",
"openpyxl>=3.0.7",
"pyyaml>=5.3"
],
extras_require={"ImpactWorld": ["pyodbc >= 4.0.30;platform_system=='Windows'"]},
license="MIT",
author='Ben Young, Michael Srocka, Wesley Ingwersen, Troy Hottle, Ben Morelli',
author_email='[email protected]',
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: IDE",
"Intended Audience :: Science/Research",
"License :: MIT",
"Programming Language :: Python :: 3.x",
"Topic :: Utilities",
],
description='Standardizes the format and flows of life cycle impact assessment data'
)