-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
45 lines (42 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
43
44
45
from setuptools import setup, find_packages
setup(
name='ptychoPINN',
# ... other setup parameters ...
package_data={
# Specify the correct path to the data directory at the top-level
'': ['datasets/*.npz'],
},
include_package_data=True,
# ... rest of the setup parameters ...
packages=find_packages('.') + ['FRC'],
package_dir={'ptychoPINN': 'ptycho', 'FRC': 'ptycho/FRC',
'autotest': 'ptycho/autotest'},
scripts = ['ptycho/train.py'],
install_requires = [
'dill',
'numpy',
'pandas',
'pandas-datareader',
'pathos',
'scikit-learn',
'scipy',
'tensorboard',
'tensorboard-data-server',
'tensorboard-plugin-wit',
'tensorflow[and-cuda]',
'tensorflow-datasets',
'tensorflow-estimator',
'tensorflow-hub',
'tensorflow-probability',
'ujson',
'matplotlib',
'Pillow',
'imageio',
'ipywidgets',
'tqdm',
'tensorflow-addons',
'jupyter',
'scikit-image',
'opencv-python'
],
zip_safe = False)