-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (41 loc) · 1.22 KB
/
setup.py
File metadata and controls
50 lines (41 loc) · 1.22 KB
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
"""The setup.py file for ASANN."""
from setuptools import setup
with open("README.md", "r") as readme_file:
LONG_DESCRIPTION = readme_file.read()
SHORT_DESCRIPTION = """
Implementation of the ASANN algorithm.""".strip()
DEPENDENCIES = [
'numpy',
'six',
]
EXTRA_DEPENDENCIES = {
'ASE': ['ase'],
'Pymatgen': ['pymatgen'],
}
VERSION = '1.0.0'
URL = 'https://github.com/RubenStaub/ASANN'
setup(
name="asann",
version=VERSION,
author="Ruben Staub",
author_email="ruben.staub@ens-lyon.fr",
description=SHORT_DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url=URL,
packages=setuptools.find_packages(),
classifiers=[
"Environment :: Console",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=2.6',
extra_require=EXTRA_DEPENDENCIES,
install_requires=DEPENDENCIES,
)