-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (40 loc) · 1.6 KB
/
setup.py
File metadata and controls
41 lines (40 loc) · 1.6 KB
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
40
41
# -*- coding: utf-8 -*-
# CUWP: Chemical Upcycling of Waste Plastics Process Models
# Copyright (C) 2025-2027, Yoel Cortes-Pena <yoelcortes@gmail.com>
#
# This module is under the MIT open-source license. See
# github.com/BioSTEAMDevelopmentGroup/CUWP/blob/master/LICENSE.txt
# for license details.
from setuptools import setup
setup(
name='cuwp',
packages=['cuwp'],
license='MIT',
version='0.0.3',
description="Chemical Upcycling of Waste Plastics Process Models",
long_description=open('README.rst', encoding='utf-8').read(),
author='Yoel Cortes-Pena',
install_requires=['biosteam>=2.52.21',
'biorefineries>=2.34.10'],
python_requires=">=3.12",
package_data={
'plastics': [
'cytiva',
'strap/*',
'strap/data/*',
]
},
platforms=['Windows', 'Mac', 'Linux'],
author_email='yoelcortes@gmail.com',
url='https://github.com/BioSTEAMDevelopmentGroup/cuwp',
download_url='https://github.com/BioSTEAMDevelopmentGroup/cuwp',
classifiers=['Development Status :: 3 - Alpha',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Mathematics'],
keywords='chemical process simulation plastic bioprocess engineering STRAP solvent targeted dissolution precipitation',
)