forked from USEPA/materialflowlist
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 767 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (24 loc) · 767 Bytes
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
from setuptools import setup
setup(
name='materialflowlist',
version='0.1',
packages=['materialflowlist'],
package_dir={'materialflowlist': 'materialflowlist'},
package_data={'materialflowlist': [
"input/*.*", "output/*.*", "flowmapping/*.*"]},
include_package_data=True,
install_requires = ['pandas>=0.22'],
url='https://github.com/USEPA/materialflowlist.git',
license='CC0',
author='Wesley Ingwersen',
author_email='ingwersen.wesley@epa.gov',
classifiers=[
"Development Status :: Alpha",
"Environment :: IDE",
"Intended Audience :: Science/Research",
"License :: CC0",
"Programming Language :: Python :: 3.x",
"Topic :: Utilities",
],
description=''
)