-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
99 lines (93 loc) · 3.56 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
"""Setup for fanpy.
See:
https://packaging.python.org/en/latest/distributing.html
Templated from:
https://github.com/pypa/sampleproject
"""
from os import path
from setuptools import find_packages, setup
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="fanpy",
version="0.0.0",
description="A module for evaluating, differentiating, and integrating Gaussian functions.",
long_description=long_description,
# Denotes that our long_description is in Markdown; valid values are
# text/plain, text/x-rst, and text/markdown
long_description_content_type="text/markdown",
url="https://github.com/pypa/sampleproject",
# This should be your name or the name of the organization which owns the
# project.
author="Taewon D. Kim",
# This should be a valid email address corresponding to the author listed
# above.
author_email="[email protected]",
# Classifiers help users find your project by categorizing it.
#
# For a list of valid classifiers, see https://pypi.org/classifiers/
classifiers=[
# How mature is this project? Common values are
# 2 - Pre-Alpha
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 1 - Planning",
# Indicate who your project is intended for
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
# Pick your license as you wish
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
# Specify the Python versions you support here.
# These classifiers are *not* checked by 'pip install'. See instead
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
keywords="wavefunction hamiltonian optimization schrodinger equation quantum chemistry",
packages=find_packages(exclude=["docs", "tests"]),
python_requires=">=3.4",
install_requires=["numpy", "scipy", "cma"],
extras_require={
"dev": [
"tox",
"pytest",
"pytest-cov",
"flake8",
"flake8-pydocstyle",
"flake8-import-order",
"pep8-naming",
"pylint",
"bandit",
"black",
],
"test": ["tox", "pytest", "pytest-cov"],
"horton": ["horton"],
"pyscf": ["pyscf"],
"keras": ["keras"],
},
# If there are data files included in your packages that need to be
# installed, specify them here.
package_data={},
# To provide executable scripts, use entry points in preference to the
# "scripts" keyword. Entry points provide cross-platform support and allow
# `pip` to create the appropriate form of executable for the target
# platform.
entry_points={
"console_scripts": [
"wfns_make_script=wfns.scripts.make_script:main",
"wfns_run_calc=wfns.scripts.run_calc:main",
]
},
# List additional URLs that are relevant to your project as a dict.
project_urls={
"Bug Reports": "https://github.com/theochem/gbasis/issues",
"Organization": "https://github.com/quantumelephant/",
"Source": "https://github.com/theochem/gbasis/",
},
)