-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
57 lines (53 loc) · 1.55 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
51
52
53
54
55
56
57
from setuptools import find_packages
from setuptools import setup
with open("README.rst", encoding="UTF-8") as readme_file:
readme = readme_file.read()
with open("CHANGELOG.rst", encoding="UTF-8") as changelog_file:
history = changelog_file.read()
requirements = [
"alfasim-sdk==0.20.0",
"attrs>=18.1.0",
"numpy>=1.11.0",
"pandas>=2.0.0",
"oop-ext>=1.1",
"typing_extensions",
]
extras_require = {
"testing": [
"codecov",
"mypy",
"pre-commit",
"pytest",
"pytest-cov",
"pytest-mock",
"pytest-regressions",
"tox",
],
}
setup(
author="ESSS",
author_email="[email protected]",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
description="Python package to convert the SCORE input JSON to Alfacase",
extras_require=extras_require,
install_requires=requirements,
license="MIT license",
long_description=readme + "\n\n" + history,
include_package_data=True,
python_requires=">=3.8",
keywords="ALFAsim,Score",
name="alfasim-score",
packages=find_packages(where="src"),
package_dir={"": "src"},
url="https://github.com/ESSS/alfasim-score",
zip_safe=False,
)