-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (34 loc) · 894 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
35
import setuptools
if __name__ == "__main__":
setuptools.setup(
name="mmschema",
version="1",
description="A schema for particle & molecular mechanics",
author="",
url="https://github.com/MolSSI/mmschema",
license="",
include_package_data=True,
packages=setuptools.find_packages(),
install_requires=[
"jsonschema",
],
extras_require={
"docs": [
"sphinx==1.2.3", # autodoc was broken in 1.3.1
"sphinxcontrib-napoleon",
"sphinx_rtd_theme",
"numpydoc",
],
"tests": [
"pytest",
],
"hdf5": [
"h5py",
"h5json",
],
},
tests_require=[
"pytest",
],
zip_safe=True,
)