forked from lanl/ALF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (35 loc) · 963 Bytes
/
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()
# Required Dependencies
install_requirements=[
"parsl",
]
# Documentation Dependencies
doc_requirements = [
"sphinx",
"sphinx_rtd_theme",
]
# Extra dependencies
full_requirements = [
]
setuptools.setup(
name="alf",
version="0.0.1",
author="",
author_email="",
python_requires=">3.9",
install_requires=install_requirements,
extras_require={"docs": doc_requirements, "full": full_requirements},
license="BSD 3-Clause License",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Chemistry",
],
description="Active Learning Framework",
long_description=long_description,
packages=setuptools.find_packages(),
)