-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (37 loc) · 1.14 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
import os
from setuptools import setup
from setuptools import find_packages
version_file = os.path.join(os.path.dirname(__file__), "src", "autocat", "VERSION.txt")
with open(version_file, "r") as fr:
version = fr.read().strip()
readme_file = os.path.join(os.path.dirname(__file__), "README.md")
with open(readme_file, "r") as fr:
long_description = fr.read().strip()
setup(
name="autocat",
version=version,
description="Tools for automated generation of catalyst structures and sequential learning",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/aced-differentiate/auto_cat",
author="Lance Kavalsky",
author_email="[email protected]",
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.9",
],
package_dir={"": "src"},
packages=find_packages(where="src"),
install_requires=[
"numpy",
"ase",
"pymatgen",
"fire",
"matminer",
"dscribe",
"prettytable",
"joblib",
],
include_package_data=True,
)