-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (26 loc) · 892 Bytes
/
setup.py
File metadata and controls
31 lines (26 loc) · 892 Bytes
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
import os
import io
from setuptools import setup, find_packages
def read(fname):
with io.open(os.path.join(os.path.dirname(__file__), fname), encoding="utf-8") as f:
return f.read()
setup(
name="activecsp",
version="0.1",
author="Stefaan Hessmann",
packages=find_packages("src"),
package_dir={"": "src"},
scripts=[
"src/scripts/active_csp_run.py",
"src/scripts/compute_reference_labels.py",
"src/scripts/compute_representations.py",
"src/scripts/pool_optimization.py",
"src/scripts/reference_optimization.py",
"src/scripts/compute_random_labels.py",
"src/scripts/stopping_criterion.py",
],
install_requires=[],
include_package_data=True,
license="MIT",
description="Accelerating Crystal Structure Search through Active Learning with Neural Networks for Rapid Relaxations",
)