-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (38 loc) · 1.26 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
import os
from setuptools import setup
from pathlib import Path
# Load the readme file
with Path("README.md").open() as f:
readme = f.read()
setup(
name="askem_extractions",
python_requires=">=3.8",
packages=["askem_extractions.data_model", "askem_extractions.importers"],
version="2.2.0",
keywords=["askem", "data model", "extractions", "parameters", "equations"],
description="ASKEM extractions data model library",
long_description=readme,
long_description_content_type="text/markdown",
# url=info.repo,
# download_url=info.download_url,
author=" and ".join(("Enrique Noriega-Atala", )), # TODO Add Chunwei's name and other contrinutors' too
author_email="[email protected]",
# license=info.license,
# see https://python-packaging.readthedocs.io/en/latest/command-line-scripts.html
scripts=[
os.path.join("examples", "usage.py")
],
install_requires=["pydantic>=2.0.3 "],
classifiers=[
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3",
],
# tests_require=test_deps,
# extras_require={
# "test": test_deps,
# "all": dev_deps
# },
include_package_data=True,
zip_safe=True,
)