-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (22 loc) · 886 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
import pathlib
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / "README.md").read_text(encoding="utf-8")
setup(
name="MEA_Absorption_Column", # Replace with your project's name
version="0.5.0",
author="Tanner Polley",
author_email="[email protected]",
description="A Python based MEA Absorption Column model using a sequential shooting method",
long_description=long_description,
url="https://github.com/tannerpolley/Absorption_Column.git", # Add project URL if any
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Engineers",
"Development Status :: 3 - Beta",
],
python_requires='>=3.9',
)