-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
46 lines (44 loc) · 1.28 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
from pathlib import Path
from setuptools import setup, find_packages
from versioneer import get_version, get_cmdclass
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="ccinput",
version=get_version(),
cmdclass=get_cmdclass(),
description="Computational Chemistry Input Generator",
long_description=long_description,
long_description_content_type="text/markdown",
url="http://github.com/cyllab/ccinput",
author="Raphaël Robidas",
author_email="[email protected]",
license="BSD 3-Clause",
classifiers=[
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Chemistry",
],
packages=find_packages(),
entry_points={
"console_scripts": [
"ccinput = ccinput.wrapper:cmd",
],
},
install_requires=[
"periodictable",
"basis_set_exchange",
"numpy",
"versioneer",
"appdirs",
],
test_suite="nose.collector",
tests_require=[
"nose",
"mock",
],
python_requires=">=3.6",
zip_safe=False,
)