forked from rs-station/careless
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 759 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (24 loc) · 759 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='careless',
version='0.1.3',
author='Kevin M. Dalton',
author_email='kmdalton@fas.harvard.edu',
packages=find_packages(),
description='Scaling and merging crystallographic data with TensorFlow and Variational Inference',
install_requires=[
"reciprocalspaceship>=0.9.1",
"tqdm",
"tensorflow>=2.4",
"tensorflow-probability",
],
scripts = [
'careless/careless',
'scripts/ccplot',
'scripts/ccanom_plot',
'scripts/make_difference_map',
'scripts/optimistic_uncertainties',
],
setup_requires=['pytest-runner'],
tests_require=['pytest', 'pytest-cov', 'pytest-xdist'],
)