forked from nlesc-nano/ceiba-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
55 lines (49 loc) · 1.67 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
#!/usr/bin/env python
import os
from setuptools import setup
HERE = os.path.abspath(os.path.dirname(__file__))
version = {}
with open(os.path.join(HERE, 'ceibacli', '__version__.py')) as f:
exec(f.read(), version)
with open('README.rst') as readme_file:
readme = readme_file.read()
setup(
name='ceibacli',
version=version['__version__'],
description="command line interface to compute and query molecular properties from a database",
long_description=readme + '\n\n',
author="Felipe Zapata",
author_email='[email protected]',
url='https://github.com/nlesc-nano/ceiba-cli',
packages=[
'ceibacli',
],
include_package_data=True,
license="Apache Software License 2.0",
zip_safe=False,
keywords=['Simulations', 'graphql'],
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.7',
'Programming Language :: Python :: 3.8',
],
entry_points={
'console_scripts': [
'ceibacli=ceibacli.cli:main',
'mock_workflow=ceibacli.mock_workflow:main'
]
},
install_requires=[
'numpy', 'pandas', 'python-swiftclient', 'pyyaml>=5.1.1', 'requests',
'schema', 'typing-extensions'],
extras_require={
'test': ['coverage', 'mypy', 'pycodestyle', 'pytest>=3.9', 'pytest-cov',
'pytest-mock'],
'docs': ['sphinx', 'sphinx_rtd_theme']
},
data_files=[('citation/ceibacli', ['CITATION.cff'])]
)