-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (24 loc) · 849 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='rcplant',
version='1.1.3',
url='',
license='',
author='Mohammadreza Rostam, Rongxuan Du',
author_email='[email protected]',
description='Recycling Plant Simulator',
long_description_content_type='text/markdown',
long_description=open('README.md').read(),
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: Free for non-commercial use",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering"
],
packages=find_packages(),
include_package_data=True,
package_data={'rcplant/data': ['rcplant/data/*.xlsx']},
python_requires='>=3.7',
install_requires=["pandas>=1.3.4", "openpyxl>=3.0.9", "numpy>=1.21.5"]
)