forked from materialsproject/maggma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
62 lines (57 loc) · 1.91 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
54
55
56
57
58
59
60
61
62
#!/usr/bin/env python
from pathlib import Path
from setuptools import find_packages, setup
module_dir = Path(__file__).resolve().parent
with open(module_dir / "README.md") as f:
long_desc = f.read()
setup(
name="maggma",
use_scm_version=True,
setup_requires=["setuptools_scm"],
description="Framework to develop datapipelines from files on disk to full dissemenation API",
long_description=long_desc,
long_description_content_type="text/markdown",
url="https://github.com/materialsproject/maggma",
author="The Materials Project",
author_email="[email protected]",
license="modified BSD",
packages=find_packages("src"),
package_dir={"": "src"},
package_data={"maggma": ["py.typed"]},
zip_safe=False,
include_package_data=True,
install_requires=[
"setuptools",
"pymongo>=3.6",
"monty>=1.0.2",
"mongomock>=3.10.0",
"pydash>=4.1.0",
"jsonschema>=3.1.1",
"tqdm>=4.19.6",
"mongogrant>=0.2.2",
"aioitertools>=0.5.1",
"numpy>=1.17.3",
"pydantic>=0.32.2",
"fastapi>=0.42.0",
"pynng>=0.5.0",
"dnspython>=1.16.0",
"sshtunnel>=0.1.5",
"msgpack>=0.5.6",
],
extras_require={"vault": ["hvac>=0.9.5"], "S3": ["boto3==1.14.7"]},
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"Intended Audience :: Information Technology",
"Operating System :: OS Independent",
"Topic :: Other/Nonlisted Topic",
"Topic :: Database :: Front-Ends",
"Topic :: Scientific/Engineering",
],
entry_points={"console_scripts": ["mrun = maggma.cli:run"]},
tests_require=["pytest"],
python_requires=">=3.7",
)