-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
39 lines (35 loc) · 1.32 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
36
37
38
39
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Tue Jun 16 16:48:17 2020
@author: cyshi
"""
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="biosteam_lca", # Replace with your own username
version="0.0.5",
author="rui shi",
author_email="cyshi@illinois.edu",
install_requires=['Brightway2>=2.3', 'biorefineries>=2.14.5',
'biosteam>=2.19.4',
'tabulate >=0.8.7', 'requests>=2.22.0'],
description='The Biorefinery Simulation Moduels with Techno-Economic Analysis and Life Cycle Assessment',
#"An Integrated Modeling Framework for Agile Life Cycle Assessment of Biorefineries",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/scyjth/biosteam_lca",
packages=setuptools.find_packages(),
# classifiers=[
# "Programming Language :: Python :: 3",
# "License :: OSI Approved :: University of Illinois/NCSA Open Source License',",
# ],
classifiers=[
"Programming Language :: Python :: 3.6",
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: University of Illinois/NCSA Open Source License',
],
python_requires='>=3.6',
)