forked from Materials-Consortia/optimade-python-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (34 loc) · 1.15 KB
/
setup.py
File metadata and controls
37 lines (34 loc) · 1.15 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
import os
from setuptools import setup, find_packages
module_dir = os.path.dirname(os.path.abspath(__file__))
setup(
name='optimade',
version="0.1.12",
packages=find_packages(),
include_package_data=True,
url='https://github.com/materialsproject/optimade/',
license='modified BSD',
author='MP Team',
author_email='feedback@materialsproject.org',
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=[
"marshmallow-jsonapi>=0.19.0",
"marshmallow>=2.15.3",
"pymongo>=3.6.1",
"lark-parser>=0.5.6",
],
tests_require=["pytest>=3.6"],
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Intended Audience :: Developers',
'Topic :: Database',
'Topic :: Database :: Database Engines/Servers',
'Topic :: Database :: Front-Ends',
],
keywords='optimade jsonapi materials',
python_requires='>=3',
)