forked from USEPA/flowsa
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
54 lines (52 loc) · 1.75 KB
/
setup.py
File metadata and controls
54 lines (52 loc) · 1.75 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
"""
Setup for flowsa package
"""
from setuptools import setup, find_packages
setup(
name='flowsa',
version='2.2.0',
packages=find_packages(),
package_dir={'flowsa': 'flowsa'},
include_package_data=True,
python_requires=">=3.10",
install_requires=[
'fedelemflowlist @ git+https://github.com/USEPA/fedelemflowlist.git#egg=fedelemflowlist',
'esupy @ git+https://github.com/USEPA/esupy.git#egg=esupy',
'StEWI @ git+https://github.com/USEPA/standardizedinventories.git#egg=StEWI',
'appdirs>=1.4.4',
'bibtexparser>=1.4.3',
"kaleido==0.1.0.post1;platform_system=='Windows'",
"kaleido==0.2.0;platform_system=='Linux' or platform_system=='Darwin'",
'matplotlib>=3.10.3',
'numpy>=2.2.6',
'openpyxl>=3.1.5',
'pandas>=2.3.0',
'pip>=25.1.1',
'plotly>= 6.1.2',
'pycountry>=24.6.1',
'python-dotenv >= 1.1.0',
'pyyaml>=6.0.2',
'requests>=2.32.4',
'requests_ftp==0.3.1',
'seaborn>=0.13.2',
'setuptools>=80.9.0',
'tabula-py>=2.10.0',
'xlrd>=2.0.1'
],
url='https://github.com/USEPA/FLOWSA',
license='MIT',
author='Catherine Birney, Ben Young, Matthew Chambers, and Wesley '
'Ingwersen',
author_email='catherine.birney@erg.com',
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: IDE",
"Intended Audience :: Science/Research",
"License :: MIT",
"Programming Language :: Python :: 3.x",
"Topic :: Utilities",
],
description='Attributes resources (environmental, monetary, and human), '
'emissions, wastes, and losses to US industrial and final '
'use sectors.'
)