-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·30 lines (25 loc) · 825 Bytes
/
setup.py
File metadata and controls
executable file
·30 lines (25 loc) · 825 Bytes
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
from setuptools import setup, find_packages
with open("README.md") as f:
readme = f.read()
with open("LICENSE") as f:
license = f.read()
extras = {
"dev": ["bump2version"],
"docs": open("docs/requirements.txt").read().splitlines(),
"tests": open("tests/requirements.txt").read().splitlines(),
}
setup(
name="atoMEC",
version="1.4.0",
description="KS-DFT average-atom code",
long_description=readme,
long_description_content_type="text/markdown",
author="Tim Callow et al.",
author_email="t.callow@hzdr.de",
url="https://github.com/atomec-project/atoMEC",
license=license,
packages=find_packages(exclude=("tests", "docs", "examples")),
install_requires=open("requirements.txt").read().splitlines(),
extras_require=extras,
python_requires=">=3.6",
)