-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 747 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 747 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
from setuptools import setup, find_packages
setup(
name='uqlab',
version='0.1.1',
url="https://github.com/AdamThomas-Mitchell/uqlab",
author='Adam Thomas-Mitchell',
author_email='atmitchell017@gmail.com',
description='A package to investigate uncertainty quantification for machine learning force fields',
packages=find_packages(),
install_requires=[],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
],
include_package_data=True,
package_data={
'': [
'data/waterDimer/*.csv',
'data/glycine/train/*.csv',
'data/glycine/test/*.csv'
]
},
)