forked from materials-data-facility/forge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (37 loc) · 1.28 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
from setuptools import setup
setup(
name='mdf_forge',
version='0.5.0',
packages=['mdf_forge'],
description='Materials Data Facility python package',
long_description="Forge is the Materials Data Facility Python package to interface and leverage the MDF Data Discovery service. Forge allows users to perform simple queries and facilitiates moving and synthesizing results.",
install_requires=[
"mdf-toolbox>=0.1.0",
"globus-sdk>=1.2.1",
"requests>=2.18.4",
"tqdm>=4.19.4",
"six>=1.10.0"
],
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 2",
"Topic :: Scientific/Engineering"
],
keywords=[
"MDF",
"Materials Data Facility",
"materials science",
"dft",
"data discovery",
"supercomputing",
"light sources"
],
license="Apache License, Version 2.0",
url="https://github.com/materials-data-facility/forge"
)