-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
50 lines (40 loc) · 1.65 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
import os
from setuptools import setup, find_packages
import versioneer
def package_files(directory):
paths = []
for (path, directories, filenames) in os.walk(directory):
for filename in filenames:
paths.append(os.path.join('..', path, filename))
return paths
extra_files = package_files('strucscan/resources')
setup(
name="strucscan",
version=versioneer.get_version(),
description="Lightweight Python-based framework for high-throughput material simulation by ICAMS, Ruhr University Bochum",
url='https://github.com/ICAMS/strucscan',
author='Isabel Pietka',
author_email='[email protected]',
license='GPL3',
classifiers=['Development Status :: 5 - Production/Stable',
'Topic :: Scientific/Engineering :: Physics',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'],
keywords='computational materials science',
packages=find_packages(include=['strucscan', 'strucscan.*']),
install_requires=['ase', 'numpy', 'pyyaml'],
cmdclass=versioneer.get_cmdclass(),
include_package_data=True,
package_data={'': extra_files},
entry_points={
'console_scripts': [
'strucscan = strucscan.cli:main'
]
},
)