Skip to content
This repository was archived by the owner on Jan 14, 2023. It is now read-only.

Commit cbe8a5e

Browse files
committed
trying to shrink requirements in setup.py not tested to see if it will work yet
1 parent 60c50e4 commit cbe8a5e

File tree

1 file changed

+36
-92
lines changed

1 file changed

+36
-92
lines changed

setup.py

Lines changed: 36 additions & 92 deletions
Original file line numberDiff line numberDiff line change
@@ -11,25 +11,30 @@
1111
with open('HISTORY.rst') as history_file:
1212
history = history_file.read()
1313

14-
setup_requirements = ['pytest-runner','numpy','matplotlib','welly','lasio']
14+
setup_requirements = ['click',
15+
'matplotlib',
16+
'folium',
17+
'bokeh',
18+
'branca',
19+
'welly',
20+
'lasio',
21+
'scikit-learn',
22+
'numpy',
23+
'numba',
24+
'pooch',
25+
'scipy',
26+
'tables',
27+
'xgboost']
1528

16-
requirements = ['Click>=6.0','anaconda-client==1.6.14',
17-
'appdirs==1.4.3',
18-
'appnope==0.1.0',
19-
'asn1crypto==0.24.0',
20-
'astroid==2.2.5',
21-
'backcall==0.1.0',
22-
'bleach==2.1.3',
29+
"""The setup script."""
30+
requirements = ['Click>=6.0',
2331
'bokeh==0.13.0',
2432
'branca==0.3.0',
2533
'certifi==2018.4.16',
26-
'cffi==1.11.5',
2734
'chardet==3.0.4',
2835
'click==6.7',
2936
'cloudpickle==0.5.3',
30-
'clyent==1.2.2',
3137
'cryptography',
32-
'cycler==0.10.0',
3338
'Cython==0.28.3',
3439
'cytoolz==0.9.0.1',
3540
'dask==0.18.2',
@@ -38,105 +43,44 @@
3843
'dask-xgboost==0.1.5',
3944
'decorator==4.3.0',
4045
'distributed==1.22.0',
41-
'entrypoints==0.2.3',
4246
'folium==0.5.0',
43-
'hdbscan==0.8.15',
44-
'heapdict==1.0.0',
45-
'html5lib==1.0.1',
46-
'idna==2.7',
47-
'ipykernel==4.8.2',
48-
'ipython==6.4.0',
49-
'ipython-genutils==0.2.0',
50-
'ipywidgets==7.2.1',
51-
'isort==4.3.15',
52-
'jedi==0.12.0',
53-
'Jinja2==2.10.1',
54-
'jsonschema==2.6.0',
55-
'jupyter==1.0.0',
56-
'jupyter-client==5.2.3',
57-
'jupyter-console==5.2.0',
58-
'jupyter-core==4.4.0',
59-
'kiwisolver==1.0.1',
6047
'lasio==0.21',
61-
'lazy-object-proxy==1.3.1',
62-
'llvmlite==0.24.0',
63-
'locket==0.2.0',
64-
'MarkupSafe==1.0',
6548
'matplotlib==2.2.2',
66-
'mccabe==0.6.1',
67-
'mistune==0.8.3',
68-
'mkl-fft==1.0.4',
6949
'mkl-random==1.0.1',
70-
'msgpack==0.5.6',
71-
'msgpack-python==0.5.6',
72-
'multipledispatch==0.5.0',
73-
'nb-anacondacloud==1.4.0',
74-
'nb-conda==2.2.1',
75-
'nb-conda-kernels==2.1.0',
76-
'nbconvert==5.3.1',
77-
'nbformat==4.4.0',
78-
'nbpresent==3.0.2',
79-
'notebook>=5.7.8',
8050
'numba==0.39.0',
81-
'numexpr==2.6.5',
8251
'numpy==1.15.0',
83-
'ordereddict==1.1',
84-
'packaging==17.1',
8552
'pandas==0.23.3',
86-
'pandocfilters==1.4.2',
87-
'parso==0.2.1',
88-
'partd==0.3.8',
89-
'patsy==0.5.0',
90-
'pdvega==0.1',
91-
'pexpect==4.6.0',
9253
'pickleshare==0.7.4',
9354
'pooch==0.3.1',
94-
'prompt-toolkit==1.0.15',
95-
'psutil==5.4.6',
96-
'ptyprocess==0.6.0',
97-
'pycparser==2.18',
98-
'Pygments==2.2.0',
99-
'pylint==2.3.1',
100-
'pyOpenSSL==18.0.0',
101-
'pyparsing==2.2.0',
102-
'PySocks==1.6.8',
103-
'python-dateutil==2.7.3',
104-
'pytz==2018.4',
105-
'pyyaml>=4.2b1',
106-
'pyzmq==17.0.0',
107-
'qtconsole==4.3.1',
10855
'requests>=2.20.0',
10956
'scikit-learn==0.19.1',
11057
'scipy==1.1.0',
11158
'seaborn==0.9.0',
112-
'Send2Trash==1.5.0',
113-
'simplegeneric==0.8.1',
114-
'six==1.11.0',
115-
'sortedcontainers==2.0.4',
116-
'statsmodels==0.9.0',
11759
'striplog==0.7.3',
11860
'tables==3.4.4',
119-
'tblib==1.3.2',
120-
'terminado==0.8.1',
121-
'testpath==0.3.1',
122-
'toolz==0.9.0',
123-
'tornado==5.0.2',
124-
'tqdm==4.23.4',
125-
'traitlets==4.3.2',
126-
'typed-ast==1.3.1',
127-
'umap-learn==0.3.2',
128-
'urllib3>=1.24.2'
129-
'vega==1.3.0',
130-
'vega3==0.13.0',
131-
'wcwidth==0.1.7',
132-
'webencodings==0.5.1',
61+
'urllib3>=1.24.2',
13362
'welly==0.3.5',
134-
'widgetsnbextension==3.2.1',
135-
'wrapt==1.11.1',
13663
'xgboost==0.72.1',
137-
'zict==0.1.3']
64+
'dask==0.18.2',
65+
'dask-glm==0.1.0',
66+
'dask-ml==0.7.0',
67+
'dask-xgboost==0.1.5',
68+
'decorator==4.3.0',
69+
'distributed==1.22.0',
70+
'entrypoints==0.2.3',
71+
'ipykernel==4.8.2',
72+
'ipython==6.4.0',
73+
'ipython-genutils==0.2.0',
74+
'ipywidgets==7.2.1',
75+
'isort==4.3.15',
76+
'jupyter==1.0.0',
77+
'jupyter-client==5.2.3',
78+
'jupyter-console==5.2.0',
79+
'jupyter-core==4.4.0',
80+
]
81+
13882

139-
test_requirements = ['pytest']
83+
test_requirements = ['pytest','pytest-runner']
14084

14185
setup(
14286
author="Justin Gosses",

0 commit comments

Comments
 (0)