We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2236f51 + 7c3809b commit 24e899aCopy full SHA for 24e899a
setup.py
@@ -1,8 +1,22 @@
1
from setuptools import setup
2
3
+
4
+with open("README.md") as readme:
5
+ description = readme.read()
6
7
8
setup(
9
name='pandas_selectable',
- version='1.0',
10
+ version='1.0.1',
11
description='Add a select accessor to pandas',
12
packages=['pandas_selectable'],
13
+ long_description=description,
14
+ long_description_content_type="text/markdown",
15
+ author="Skipper Seabold",
16
+ url="https://github.com/jseabold/pandas-selectable",
17
+ classifiers=[
18
+ "Programming Language :: Python :: 3",
19
+ "License :: OSI Approved :: MIT License",
20
+ ],
21
+ python_requires=">=3.6",
22
)
0 commit comments