-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (37 loc) · 1.17 KB
/
setup.py
File metadata and controls
39 lines (37 loc) · 1.17 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
38
39
import os
from setuptools import setup, find_packages
# Single source of truth for version
version_ns = {}
with open(os.path.join("mdf_toolbox", "version.py")) as f:
exec(f.read(), version_ns)
version = version_ns['__version__']
setup(
name='mdf_toolbox',
version=version,
packages=find_packages(),
description='Materials Data Facility Python utilities',
long_description=("Toolbox is the Materials Data Facility Python package"
" containing utility functions and other tools."),
install_requires=[
"fair-research-login>=0.2.4",
"globus-sdk>=3.1.0",
"requests>=2.26.0",
"jsonschema>=4.3.0"
],
python_requires=">=3.6",
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"
],
license="Apache License, Version 2.0",
url="https://github.com/materials-data-facility/toolbox"
)