-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
50 lines (44 loc) · 1.11 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
42
43
44
45
46
47
48
49
50
""" Atlas: A Brain for Self-driving Laboratories
"""
from setuptools import find_packages, setup
import versioneer
def readme():
with open("README.md") as f:
return f.read()
# -----
# Setup
# -----
setup(
name="matter-atlas",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="some description",
long_description=readme(),
classifiers=[
"Programming Language :: Python",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
],
url="https://github.com/rileyhickman/atlas",
author="Riley Hickman",
author_email="[email protected]",
license="MIT",
packages=find_packages(where="src", include=["atlas*"]),
package_dir={"": "src"},
zip_safe=False,
tests_require=["pytest"],
install_requires=[
"numpy",
"rich",
"deap",
"pymoo",
"sobol-seq",
"pyDOE",
"botorch>=0.8.5",
"matplotlib<=3.7.3",
"pandas<=2.0.3",
"matter-chimera",
"matter-golem",
],
python_requires=">=3.9",
)