-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (31 loc) · 1.38 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
from setuptools import setup, find_packages
DESCRIPTION = "The Ab-iniTiO & Neutron research toolbox, or ATON, provides powerful and comprehensive tools for cutting-edge materials research, focused on (but not limited to) neutron science."
exec(open('aton/_version.py').read())
with open('README.md', 'r') as f:
LONG_DESCRIPTION = f.read()
setup(
name = 'aton',
version = __version__,
author = 'Pablo Gila-Herranz',
author_email = 'pgila001@ikasle.ehu.eus',
description = DESCRIPTION,
long_description = LONG_DESCRIPTION,
long_description_content_type = 'text/markdown',
packages = find_packages(),
install_requires = ['scipy', 'pandas', 'numpy', 'matplotlib'],
extras_requires = {
'dev': ['pytest', 'twine', 'build']
},
python_requires = '>=3',
license = 'AGPL-3.0',
keywords = ['Aton', 'Neutron', 'Neutron research', 'Spectra', 'Inelastic Neutron Scattering', 'INS', 'Ab-initio', 'DFT', 'Density Functional Theory', 'MD', 'Molecular Dynamics', 'Quantum ESPRESSO', 'Phonopy', 'CASTEP'],
classifiers = [
"Development Status :: 5 - Production/Stable",
"Natural Language :: English",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: Other OS",
]
)