forked from Materials-Consortia/optimade-python-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (36 loc) · 1.27 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
import os
from setuptools import setup, find_packages
module_dir = os.path.dirname(os.path.abspath(__file__))
setup(
name="optimade",
version="0.2.0",
packages=find_packages(),
include_package_data=True,
url="https://github.com/Materials-Consortia/optimade-python-tools",
license="MIT",
author="OPTiMaDe Development Team",
author_email="[email protected]",
description="Tools for implementing and consuming OPTiMaDe APIs.",
long_description=open(os.path.join(module_dir, "README.md")).read(),
long_description_content_type="text/markdown",
install_requires=[
"pymongo>=3.8",
"lark-parser>=0.5.6",
"mongogrant",
"mongomock>=3.16",
"fastapi[all]",
],
extras_require={"dev": ["black", "invoke", "pre-commit", "twine"]},
tests_require=["pytest>=3.6", "openapi-spec-validator", "jsondiff"],
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Intended Audience :: Developers",
"Topic :: Database",
"Topic :: Database :: Database Engines/Servers",
"Topic :: Database :: Front-Ends",
],
keywords="optimade jsonapi materials",
python_requires=">=3.7",
)