forked from abacusmodeling/ABACUS-orbitals
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (32 loc) · 1003 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
32
33
from setuptools import setup, find_packages
setup(
name="SIAB",
version="3.0-alpha",
author="ABACUS-AISI developers",
author_email="[email protected]",
description="",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=[
"numpy",
"matplotlib",
"scipy<1.10", # required by some functionalities employing the old version simpson integral
"torch",
"torch_optimizer",
"torch_complex",
"addict"
],
zip_safe=False,
classifiers=[
# Add classifiers to help others find your project
# Full list: https://pypi.org/classifiers/
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License", # Change as necessary
"Operating System :: OS Independent",
],
scripts=[
"SIAB/SIAB_nouvelle.py",
],
python_requires='<3.11', # required by SciPy 1.10
)