Skip to content

Commit

Permalink
Initial setup file
Browse files Browse the repository at this point in the history
  • Loading branch information
WesIngwersen committed Dec 21, 2018
1 parent c2f1877 commit 84d027e
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
from setuptools import setup

setup(
name='fedelemflowlist',
version='0.1',
packages=['fedelemflowlist'],
package_dir={'fedelemflowlist': 'fedelemflowlist'},
package_data={'fedelemflowlist': ["input/*.*", "output/*.*","flowmapping/*.*","candidate-flows/*.*"]},
include_package_data=True,
install_requires = ['pandas>=0.22'],
url='https://github.com/USEPA/Federal-LCA-Commons-Elementary-Flow-List',
license='CC0',
author='Wesley Ingwersen',
author_email='[email protected]',
classifiers=[
"Development Status :: Alpha",
"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 for life cycle assessment data'
)

0 comments on commit 84d027e

Please sign in to comment.