This repository was archived by the owner on Mar 9, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (41 loc) · 1.69 KB
/
setup.py
File metadata and controls
47 lines (41 loc) · 1.69 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
from pathlib import Path
from setuptools import find_packages, setup
TOP_DIR = Path(__file__).resolve().parent
with open(TOP_DIR.joinpath("README.md")) as handle:
README = handle.read()
with open(TOP_DIR.joinpath("requirements.txt")) as handle:
BASE = [f"{_.strip()}" for _ in handle.readlines() if " " not in _]
with open(TOP_DIR.joinpath("requirements_dev.txt")) as handle:
DEV = [f"{_.strip()}" for _ in handle.readlines()]
setup(
name="tools-optimade-client",
version="2025.07.02",
license="MIT License",
author="Casper Welzel Andersen",
author_email="casper.andersen@epfl.ch",
description="Voilà client for searching through OPTIMADE databases deployed on Materials Cloud as a Tool.",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/materialscloud-org/tools-optimade-client",
python_requires=">=3.8",
packages=find_packages(),
include_package_data=True,
install_requires=BASE,
extras_require={"dev": DEV},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: AiiDA",
"Framework :: Jupyter",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Database :: Front-Ends",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Widget Sets",
],
)