-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
44 lines (42 loc) · 1.15 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
from setuptools import setup, find_packages
setup(
name = "colabfit-tools",
version = "0.0.2",
author = "ColabFit",
description = ("A suite of tools for working with training datasets for interatomic potentials"),
license = "BSD",
keywords = "machine learning interatomic potentials",
url = "http://colabfit.org",
packages=find_packages(),
# packages=[
# 'colabfit.tools',
# 'colabfit.tools.configuration_sets',
# 'colabfit.tools.configuration',
# 'colabfit.tools.converters',
# 'colabfit.tools.dataset',
# 'colabfit.tools.property_settings',
# 'colabfit.tools.property',
# 'colabfit.tools.transformations',
# ],
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License",
],
install_requires = [
'ase',
'h5py',
'kim_property',
'numpy',
'tqdm',
'markdown',
'plotly',
'pymongo',
'biopython',
'matplotlib',
'django',
'periodictable',
'unidecode',
'notebook',
],
)