-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
50 lines (45 loc) · 1.37 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
from setuptools import find_packages, setup
with open("README.md", "r") as fh:
long_description = fh.read()
install_requires = [
'ruamel.yaml==0.18.6',
'mock',
'bscearth.utils',
'configobj',
'pyparsing',
'configparser'
]
# Test dependencies
test_requires = [
'pytest',
'pytest-cov',
'pytest-mock',
'ruff'
]
extras_require = {
'test': test_requires,
'all': install_requires + test_requires
}
setup(
name="autosubmitconfigparser",
version="1.0.77.dev0",
author="Daniel Beltran Mora",
author_email="[email protected]",
description="An utility library that allows to read an Autosubmit 4 experiment configuration.",
keywords=['climate', 'weather', 'workflow', 'HPC'],
long_description=long_description,
long_description_content_type="text/markdown",
url="https://earth.bsc.es/gitlab/ces/autosubmit4-config-parser.git",
include_package_data=True,
package_data={'files': ['autosubmitconfigparser/conf/files/*']},
packages=find_packages(),
install_requires=install_requires,
extras_require=extras_require,
classifiers=[
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: POSIX :: Linux"
],
)