forked from MolSSI/QCFractal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
79 lines (75 loc) · 2.5 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
import setuptools
import versioneer
short_description = "A distributed compute and database platform for quantum chemistry."
try:
with open("README.md", "r") as handle:
long_description = handle.read()
except FileNotFoundError:
long_description = short_description
if __name__ == "__main__":
setuptools.setup(
name="qcfractal",
description=short_description,
author="The QCArchive Development Team",
author_email="qcarchive@molssi.org",
url="https://github.com/molssi/qcfractal",
license="BSD-3C",
include_package_data=True,
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
packages=setuptools.find_packages(),
python_requires=">=3.7",
install_requires=[
# Core dependencies
"numpy >=1.17",
"msgpack >=0.6.1",
"tornado",
"requests",
"pyyaml >=5.1",
"pydantic >=1.4.0",
# Security dependencies
"bcrypt",
"cryptography",
# Storage dependencies
"sqlalchemy >=1.3,<1.4",
"alembic",
"psycopg2 >=2.7",
# QCPortal dependencies
"tqdm",
"plotly >=4.0.0",
"pandas",
"h5py",
"pyarrow >=0.15.0",
# 'double-conversion >=3.0.0',
# QCArchive depends
"qcengine==0.22",
"qcelemental==0.24",
],
entry_points={
"console_scripts": [
"qcfractal-server=qcfractal.cli.qcfractal_server:main",
"qcfractal-manager=qcfractal.cli.qcfractal_manager:main",
],
"pytest11": ["qcfractal_testing=qcfractal.testing"],
},
extras_require={
"api_logging": ["geoip2"],
"docs": [
"sphinx==1.2.3", # autodoc was broken in 1.3.1
"sphinxcontrib-napoleon",
"sphinx_rtd_theme",
"numpydoc",
],
"lint": ["black", "isort"],
"tests": ["pytest", "pytest-cov", "requests-mock"],
},
tests_require=["pytest", "pytest-cov"],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
],
zip_safe=True,
long_description=long_description,
long_description_content_type="text/markdown",
)