This repository has been archived by the owner on Nov 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
44 lines (42 loc) · 1.51 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
import sys
from setuptools import setup, find_packages
# Check python version
if sys.version_info[:2] < (3, 7):
raise RuntimeError("Python version >= 3.7 required.")
if __name__ == "__main__":
setup(name="matid",
version="0.6.3",
url="https://singroup.github.io/matid/",
description=(
"MatID is a python package for identifying and analyzing atomistic "
"systems based on their structure."
),
long_description=(
"MatID is a python package for identifying and analyzing atomistic "
"systems based on their structure."
),
author='Lauri Himanen',
license="Apache License 2.0",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Physics",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3 :: Only",
],
keywords='atoms structure materials science crystal symmetry',
packages=find_packages(),
install_requires=[
"numpy",
"scipy",
"ase",
"spglib>=1.15.0",
"scikit-learn",
"networkx>=2.4"
],
python_requires=">=3.7",
)