File tree Expand file tree Collapse file tree 6 files changed +21
-8
lines changed Expand file tree Collapse file tree 6 files changed +21
-8
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ Win Vector LLC tools for teaching data science in Python 3
33# ~/anaconda3/bin/python3 setup.py sdist
44
55~/anaconda3/bin/pip uninstall wvpy
6- ~/anaconda3/bin/pip install https://github.com/WinVector/wvpy/raw/master/dist/wvpy-0.1.tar.gz
6+ ~/anaconda3/bin/pip install https://github.com/WinVector/wvpy/raw/master/dist/wvpy-0.1.2. tar.gz
77# (any dependencies warned about abort install)
88
99
Original file line number Diff line number Diff line change 11# setup.py
22import setuptools
33
4+ DESCRIPTION = "Simple utilities for teaching Pandas and scikit learn."
5+ LONG_DESCRIPTION = """
6+ Simple utilities for teaching Pandas and scikit learn.
7+ """
8+
49setuptools .setup (name = 'wvpy' ,
5- version = '0.1.1 ' ,
10+ version = '0.1.2 ' ,
611 author = 'John Mount' ,
712813 url = 'https://github.com/WinVector/wvpy' ,
1419 'sklearn' ,
1520 'pandas'
1621 ],
22+ platforms = ['any' ],
23+ license = 'License :: OSI Approved :: BSD 3-clause License' ,
24+ description = DESCRIPTION ,
25+ long_description_content_type = 'text/markdown' ,
1726 classifiers = [
1827 'Intended Audience :: Science/Research' ,
1928 'Programming Language :: Python' ,
2332 'Programming Language :: Python :: 3.7' ,
2433 'License :: OSI Approved :: BSD License' ,
2534 ],
35+ long_description = LONG_DESCRIPTION ,
2636)
Original file line number Diff line number Diff line change 1- Metadata-Version: 1 .1
1+ Metadata-Version: 2 .1
22Name: wvpy
3- Version: 0.1.1
4- Summary: UNKNOWN
3+ Version: 0.1.2
4+ Summary: Simple utilities for teaching Pandas and scikit learn.
55Home-page: https://github.com/WinVector/wvpy
66Author: John Mount
778- License: UNKNOWN
9- Description: UNKNOWN
10- Platform: UNKNOWN
8+ License: License :: OSI Approved :: BSD 3-clause License
9+ Description:
10+ Simple utilities for teaching Pandas and scikit learn.
11+
12+ Platform: any
1113Classifier: Intended Audience :: Science/Research
1214Classifier: Programming Language :: Python
1315Classifier: Programming Language :: Python :: 3
1416Classifier: Programming Language :: Python :: 3.5
1517Classifier: Programming Language :: Python :: 3.6
1618Classifier: Programming Language :: Python :: 3.7
1719Classifier: License :: OSI Approved :: BSD License
20+ Description-Content-Type: text/markdown
You can’t perform that action at this time.
0 commit comments