-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
46 lines (40 loc) · 1.34 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
#!/usr/bin/env python
import os
from setuptools import find_packages, setup
HERE = os.path.abspath(os.path.dirname(__file__))
version = "0.1.0"
with open('README.rst') as readme_file:
readme = readme_file.read()
setup(
name='pyvotca',
version=version,
description="Generic tools to interact with Votca using Python",
long_description=readme + '\n\n',
author="Bjoern Baumeier",
author_email='',
url='https://github.com/votca/PyVOTCA',
packages=find_packages(),
include_package_data=True,
license="Apache Software License 2.0",
zip_safe=False,
keywords='pyvotca',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
],
entry_points={
'console_scripts': [
'xtp_gradient=pyvotca.xtp_gradient:main',
]
},
install_requires=["h5py", "matplotlib", "more_itertools", "numpy", "pyparsing", "scipy", "periodictable"],
extras_require={
'test': ['coverage', 'mypy', 'pycodestyle', 'pytest>=3.9',
'pytest-asyncio', 'pytest-cov', 'pytest-mock'],
'docs': ['sphinx', 'sphinx_rtd_theme']
}
)