-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
35 lines (30 loc) · 805 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
""" Atlas
Some description here...
"""
from setuptools import setup
def readme():
with open("README.md") as f:
return f.read()
# -----
# Setup
# -----
setup(
name="atlas",
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="riley.hickman@mail.utoronto.ca",
# license='XXX',
packages=["atlas"],
package_dir={"": "src"},
zip_safe=False,
tests_require=["pytest"],
install_requires=["numpy", "pandas", "rich", "deap", "botorch", "matter-chimera", "matter-golem"],
python_requires=">=3.6",
)