forked from jafranc/pyopmcsp11
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (44 loc) · 1.64 KB
/
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
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
# SPDX-FileCopyrightText: 2023 NORCE
# SPDX-License-Identifier: MIT
"""pyopmcsp11: A Python framework using OPM Flow for the CSP11 benchmark project"""
from setuptools import find_packages, setup
with open("README.md", "r", encoding="utf8") as file:
long_description = file.read()
with open("requirements.txt", "r", encoding="utf8") as file:
install_requires = file.read().splitlines()
with open("dev-requirements.txt", "r", encoding="utf8") as file:
dev_requires = file.read().splitlines()
setup(
name="pyopmcsp11",
version="0.0.1",
install_requires=install_requires,
extras_require={"dev": dev_requires},
setup_requires=["setuptools_scm"],
description="pyopmcsp11: A Python framework using OPM Flow for the CSP11 benchmark project",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/dmar/pyopmcsp11",
author="David Landa-Marbán",
mantainer="David Landa-Marbán",
mantainer_email="[email protected]",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: MIT",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
keywords="spe11 co2 flow python",
package_dir={"": "src"},
packages=find_packages(where="src"),
license="MIT",
python_requires=">=3.8, <4",
entry_points={
"console_scripts": [
"pyopmcsp11=pyopmcsp11.core.pyopmcsp11:main",
]
},
include_package_data=True,
)