-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·40 lines (37 loc) · 1.31 KB
/
setup.py
File metadata and controls
executable file
·40 lines (37 loc) · 1.31 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
from pathlib import Path
from setuptools import find_packages, setup
ROOT = Path(__file__).parent
README = (ROOT / "README.md").read_text(encoding="utf-8")
version_ns = {}
exec((ROOT / "pyfrsoc" / "_version.py").read_text(encoding="utf-8"), version_ns)
setup(
name="pyfrsoc",
version=version_ns["__version__"],
author="Yu Jin",
author_email="yjin@flatironinstitute.org",
description="Python tools for first-principles spin-orbit coupling and zero-field splitting calculations",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/jinyuchem/pyfrsoc",
project_urls={
"Issues": "https://github.com/jinyuchem/pyfrsoc/issues",
},
packages=find_packages(),
python_requires=">=3.10",
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
"Intended Audience :: Science/Research",
],
install_requires=[
"numpy",
"scipy",
"mpi4py",
],
)