-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (24 loc) · 900 Bytes
/
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
from setuptools import setup, find_packages
setup(
name='IntLCA-dev',
version='0.1.0',
author='Margarita A. Charalambous',
author_email='ritabous2@gmail.com',
description='IntLCA package for integrating emerging technologies in inventory matrices and performing large scale scenario analysis.' ,
long_description=open('README.md', encoding='utf-8').read(),
long_description_content_type='text/markdown',
url='https://github.com/MargotCha/Integrated_LCA/',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: BSD License', # Updated classifier
'Operating System :: Microsoft :: Windows :: Windows 10',
],
packages=find_packages(),
python_requires=">=3.8, <=3.12",
install_requires=[
"brightway2==2.4.3",
"premise>=1.5.1",
"ipython==8.12.3",
"jupyterlab",
]
)