forked from materialsproject/api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
53 lines (48 loc) · 1.47 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
45
46
47
48
49
50
51
52
53
#!/usr/bin/env python
from pathlib import Path
from setuptools import find_namespace_packages, setup
module_dir = Path(__file__).resolve().parent
with open(module_dir / "README.md") as f:
long_desc = f.read()
setup(
name="mp-api",
use_scm_version=True,
setup_requires=["setuptools_scm"],
description="API Server for the Materials Project",
long_description=long_desc,
long_description_content_type="text/markdown",
url="https://github.com/materialsproject/api",
author="The Materials Project",
author_email="[email protected]",
license="modified BSD",
packages=find_namespace_packages(include=["mp_api.*"]),
zip_safe=False,
install_requires=[
"setuptools",
"msgpack",
"pymatgen>=2022.3.7",
"typing-extensions>=3.7.4.1",
"requests>=2.23.0",
"monty>=2021.3.12",
"emmet-core>=0.35.3",
],
extras_require={
"all": [
"emmet-core[all]>=0.35.3"
"custodian",
"mpcontribs-client",
"boto3"
],
},
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Information Technology",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
],
tests_require=["pytest"],
python_requires=">=3.8",
)