-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (37 loc) · 1.16 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
# Single source of truth for version
version_ns = {}
with open(os.path.join("mdf_connect_client", "version.py")) as f:
exec(f.read(), version_ns)
version = version_ns['__version__']
setup(
name='mdf_connect_client',
version=version,
packages=['mdf_connect_client'],
description='Materials Data Facility Connect Client',
long_description=("The MDF Connect Client is the Python client to easily submit"
" datasets to MDF Connect."),
install_requires=[
"mdf-toolbox>=0.7.1",
"nameparser>=1.0.4",
"requests>=2.18.4"
],
python_requires=">=3.5",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
],
keywords=[
"MDF",
"Materials Data Facility",
"materials science",
"utility",
"Connect Client"
],
license="Apache License, Version 2.0",
url="https://github.com/materials-data-facility/connect_client"
)