-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (22 loc) · 684 Bytes
/
setup.py
File metadata and controls
29 lines (22 loc) · 684 Bytes
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
import setuptools
def setup_pyints():
setuptools.setup(
name="pyints",
version="0.0.1alpha",
packages=setuptools.find_packages(exclude=["*test*"]),
install_requires=[
"basis_set_exchange", "cclib",
],
# metadata
author="Eric Berquist",
maintainer="Eric Berquist",
# TODO read this and long_description from README.md
description="",
license="BSD 3-Clause License",
url="https://github.com/berquist/pyints",
project_urls={
"Documentation": "https://berquist.github.io/pyints_docs/",
},
)
if __name__ == "__main__":
setup_pyints()