-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
31 lines (29 loc) · 996 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup, find_packages
import glob
scripts = glob.glob('scripts/*.py')
if __name__ == '__main__':
setup(
packages=find_packages(),
name="asetk",
author="Leopold Talirz",
author_email="[email protected]",
description="Toolkit for working with atomic and electronic structure \
data, built on top of the Atomistic Simulation Environment (ASE) for atomic structures.",
url="https://github.com/ltalirz/asetk",
license="MIT",
classifiers=["Programming Language :: Python"],
version="0.3.0",
install_requires=[
"numpy >= 1.9",
"scipy >= 0.14",
"matplotlib >= 1.4",
"ase >= 3.8.4",
],
scripts=scripts,
extras_require={
'pre-commit': [
'pre-commit==1.3.0', 'yapf==0.19.0', 'prospector==0.12.7',
'pylint==1.7.4'
]
})