-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
57 lines (53 loc) · 1.6 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
#!/usr/bin/env python
# vim: set fileencoding=utf-8 :
import os
from setuptools import setup, find_packages
version = '0.0.9'
description = "CP2K tools & scripts"
cur_dir = os.path.dirname(__file__)
try:
long_description = open(os.path.join(cur_dir, 'README.md')).read()
except:
long_description = description
setup(
name="cp2k-tools",
version=version,
url='http://github.com/dev-zero/cp2k-tools',
license='GPL3',
description=description,
long_description=long_description,
author=u'Tiziano Müller',
author_email='tiziano.mueller@chem.uzh.ch',
packages=find_packages(),
install_requires=[
'setuptools',
'docopt',
'numpy',
'parsimonious>=0.8',
'click>=6.7',
'regex>=2017.09.23',
],
entry_points={
'console_scripts': [
'oq = cp2k_tools.cli:oq',
'extract_last_frame = cp2k_tools.cli:extract_last_frame',
'generate_input = cp2k_tools.cli:generate_input',
'cp2k_inp2json = cp2k_tools.parser.input_cli:cli',
'cp2k_json2inp = cp2k_tools.generator.cli:cli',
'cp2k_xyz_restart_cleaner = cp2k_tools.parser.xyz_cli:xyz_restart_cleaner',
],
},
scripts=[
'scripts/cp2k_bs2csv.py',
'scripts/cp2k_pdos.py',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX',
'Programming Language :: Python',
],
test_suite = 'tests'
)