forked from USEPA/fedelemflowlist
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (32 loc) · 1.13 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
from setuptools import setup
install_requires = ['pandas>=0.22',
'olca-ipc>=0.0.8']
import struct
bit_size = struct.calcsize("P") * 8
if bit_size == 32:
install_requires.append('fastparquet>=0.4')
else:
install_requires.append('pyarrow>=0.14')
setup(
name='fedelemflowlist',
version='1.0.4',
packages=['fedelemflowlist'],
package_dir={'fedelemflowlist': 'fedelemflowlist'},
package_data={'fedelemflowlist': [
"input/*.*", "output/*.*", "flowmapping/*.*"]},
include_package_data=True,
install_requires = install_requires,
url='https://github.com/USEPA/Federal-LCA-Commons-Elementary-Flow-List',
license='CC0',
author='Wesley Ingwersen',
author_email='[email protected]',
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: IDE",
"Intended Audience :: Science/Research",
"License :: CC0",
"Programming Language :: Python :: 3.x",
"Topic :: Utilities",
],
description='Complies and provides a standardized list of elementary flows and flow mappings for life cycle assessment data'
)