-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
63 lines (59 loc) · 2.26 KB
/
Copy pathsetup.py
File metadata and controls
63 lines (59 loc) · 2.26 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
from setuptools import setup, find_packages
import codecs
import os
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh:
long_description = "\n" + fh.read()
APP_NAME = 'PyThermoModels'
VERSION = '1.4.8'
AUTHOR = 'Sina Gilassi'
EMAIL = "<sina.gilassi@gmail.com>"
DESCRIPTION = 'A Python package designed for the calculation of thermodynamic properties using various well-established models.'
LONG_DESCRIPTION = "PyThermoModels is an open-source Python package designed to facilitate thermodynamic modeling and calculations. This package provides a comprehensive and user-friendly interface to popular thermodynamic models, enabling quick and accurate estimation of key properties."
HOME_PAGE = 'https://github.com/sinagilassi/PyThermoModels'
DOCUMENTATION = 'https://pythermomodels.readthedocs.io/en/latest/'
# Setting up
setup(
name=APP_NAME,
version=VERSION,
author=AUTHOR,
author_email=EMAIL,
description=DESCRIPTION,
url=HOME_PAGE,
project_urls={
'Documentation': DOCUMENTATION,
'Source': HOME_PAGE,
'Tracker': f'{HOME_PAGE}/issues',
},
long_description_content_type="text/markdown",
long_description=long_description,
packages=find_packages(exclude=['tests', '*.tests', '*.tests.*']),
include_package_data=True, # Make sure to include non-Python files
# Add both config and data files
package_data={'': ['config/*.yml', 'config/*.csv', 'data/*.csv',
'data/*.yml', 'plugin/*.yml', 'plugin/*.csv']},
license='MIT',
license_files=[],
install_requires=[
'numpy',
'PyYAML',
'PyCUC',
'scipy',
'PyThermoDB',
'PyThermoLinkDB'
],
keywords=[
'chemical-engineering', 'equation-of-state',
'thermodynamic-properties', 'activity-coefficient',
'thermodynamic-models', 'NRTL', 'UNIQUAC', 'SRK', 'PR', 'RK', 'vdW'
],
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Education",
"Programming Language :: Python :: 3.13",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
],
python_requires='>=3.10',
)