This repository has been archived by the owner on Sep 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
59 lines (52 loc) · 1.49 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
"""
QCPortal
A client interface to the QC Archive Project
"""
from setuptools import setup, find_packages
import versioneer
short_description = "A client interface to the QC Archive Project."
try:
with open("README.md", "r") as handle:
long_description = handle.read()
except FileNotFoundError:
long_description = short_description
setup(
# Self-descriptive entries which should always be present
name='qcportal',
author='MolSSI',
description=short_description,
long_description=long_description,
long_description_content_type="text/markdown",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
python_requires=">=3.7",
license='BSD-3-Clause',
# Which Python importable modules should be included when your package is installed
packages=find_packages(),
include_package_data=True,
install_requires=[
'msgpack>=0.6.1',
'numpy>=1.7',
'pandas',
'requests',
'pyyaml>=5.1',
'pydantic>=1.0.0',
'qcelemental>=0.11.0',
'tqdm',
'h5py',
'pyarrow>=0.13.0',
'plotly',
'nglview'
],
tests_require=[
'pytest',
'pytest-cov',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
],
# Manual control if final package is compressible or not, set False to prevent the .egg from being made
zip_safe=True,
)