Skip to content

Commit 06936d1

Browse files
committed
clean up a bit
1 parent 9c4aac9 commit 06936d1

File tree

6 files changed

+21
-8
lines changed

6 files changed

+21
-8
lines changed

pkg/README.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

pkg/dist/wvpy-0.1.1.tar.gz

-3.6 KB
Binary file not shown.
Binary file not shown.

pkg/dist/wvpy-0.1.2.tar.gz

3.75 KB
Binary file not shown.

pkg/setup.py

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
# setup.py
22
import 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+
49
setuptools.setup(name='wvpy',
5-
version='0.1.1',
10+
version='0.1.2',
611
author='John Mount',
712
author_email='[email protected]',
813
url='https://github.com/WinVector/wvpy',
@@ -14,6 +19,10 @@
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',
@@ -23,4 +32,5 @@
2332
'Programming Language :: Python :: 3.7',
2433
'License :: OSI Approved :: BSD License',
2534
],
35+
long_description=LONG_DESCRIPTION,
2636
)

pkg/wvpy.egg-info/PKG-INFO

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,20 @@
1-
Metadata-Version: 1.1
1+
Metadata-Version: 2.1
22
Name: wvpy
3-
Version: 0.1.1
4-
Summary: UNKNOWN
3+
Version: 0.1.2
4+
Summary: Simple utilities for teaching Pandas and scikit learn.
55
Home-page: https://github.com/WinVector/wvpy
66
Author: John Mount
77
Author-email: [email protected]
8-
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
1113
Classifier: Intended Audience :: Science/Research
1214
Classifier: Programming Language :: Python
1315
Classifier: Programming Language :: Python :: 3
1416
Classifier: Programming Language :: Python :: 3.5
1517
Classifier: Programming Language :: Python :: 3.6
1618
Classifier: Programming Language :: Python :: 3.7
1719
Classifier: License :: OSI Approved :: BSD License
20+
Description-Content-Type: text/markdown

0 commit comments

Comments
 (0)