-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
41 lines (40 loc) · 1.41 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
40
41
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
packages = (setuptools.find_packages(),)
setuptools.setup(
name="foundry_ml",
version="1.0.4",
author="""Aristana Scourtas, KJ Schmidt, Isaac Darling, Aadit Ambadkar, Braeden Cullen,
Imogen Foster, Ribhav Bose, Zoa Katok, Ethan Truelove, Ian Foster, Ben Blaiszik""",
author_email="[email protected]",
packages=setuptools.find_packages(),
description="Package to support simplified application of machine learning models to datasets in materials science",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
"mdf_forge>=0.8.0",
"globus-sdk>=3,<4",
"dlhub_sdk>=1.0.0",
"numpy>=1.15.4",
"pandas>=0.23.4",
"pydantic>=2.7.2",
"mdf_connect_client>=0.5.0",
"h5py>=2.10.0",
"json2table",
"openpyxl>=3.1.0"
],
python_requires=">=3.7",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
],
keywords=[],
license="MIT License",
url="https://github.com/MLMI2-CSSI/foundry",
)