Skip to content

Commit 24e899a

Browse files
authored
Merge pull request #2 from jseabold/add-pypi-metadata
Add metadata for pypi
2 parents 2236f51 + 7c3809b commit 24e899a

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

setup.py

+15-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,22 @@
11
from setuptools import setup
22

3+
4+
with open("README.md") as readme:
5+
description = readme.read()
6+
7+
38
setup(
49
name='pandas_selectable',
5-
version='1.0',
10+
version='1.0.1',
611
description='Add a select accessor to pandas',
712
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",
822
)

0 commit comments

Comments
 (0)