forked from FAIRChemistry/software-driven-rdm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (33 loc) · 785 Bytes
/
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
import setuptools
from setuptools import setup
setup(
name="sdRDM",
version="0.0.4",
author="Range, Jan",
author_email="[email protected]",
license="MIT License",
packages=setuptools.find_packages(),
entry_points={"console_scripts": ["sdrdm=sdRDM.cli:app"]},
include_package_data=True,
install_requires=[
"pydantic",
"numpy",
"deepdish",
"lxml",
"jinja2",
"black",
"typer",
"pyyaml",
"toml",
"anytree",
"typing_utils",
"joblib",
"nob",
"validators",
"sqlalchemy",
"sqlalchemy-utils",
"h5py",
"GitPython",
],
extras_require={"test": ["pytest"], "dataverse": ["easyDataverse"]},
)