Skip to content

Commit d5d8a03

Browse files
committed
upload for PyPI
1 parent 1c15156 commit d5d8a03

File tree

7 files changed

+718
-681
lines changed

7 files changed

+718
-681
lines changed

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[metadata]
2+
description-file = README.md

setup.py

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
from distutils.core import setup
2+
setup(
3+
name = 'ke', # How you named your package folder (MyLib)
4+
packages = ['ke'], # Chose the same as "name"
5+
version = '1.2.2', # Start with a small number and increase it with every change you make
6+
license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
7+
description = 'A Battery-included Scraper API of Tianyancha, the best Chinese Business Database.', # Give a short description about your library
8+
author = 'Qiao Zhang', # Type in your name
9+
author_email = '[email protected]', # Type in your E-Mail
10+
url = 'https://github.com/qzcool/Tianyancha', # Provide either the link to your github or to your website
11+
download_url = 'https://github.com/qzcool/Ke/archive/v1.2.2.tar.gz', # I explain this later on
12+
keywords = ['scraper', 'real-estate', 'china', 'beike'], # Keywords that define your package best
13+
install_requires=[ # I get to this in a second
14+
'pandas',
15+
'bs4',
16+
'selenium',
17+
],
18+
classifiers=[
19+
'Development Status :: 3 - Alpha', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
20+
'Intended Audience :: Developers', # Define that your audience are developers
21+
'Topic :: Software Development :: Build Tools',
22+
'License :: OSI Approved :: MIT License', # Again, pick a license
23+
'Programming Language :: Python :: 3', #Specify which pyhton versions that you want to support
24+
'Programming Language :: Python :: 3.4',
25+
'Programming Language :: Python :: 3.5',
26+
'Programming Language :: Python :: 3.6',
27+
'Programming Language :: Python :: 3.7',
28+
],
29+
)

0 commit comments

Comments
 (0)