-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
44 lines (35 loc) · 1.11 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
from setuptools import setup
VERSION = "0.1"
URL = "https://github.com/Thyrst/KissCartoon-API"
description = open('README.rst').read()
setup(
name="kisscartoon-api",
version=VERSION,
description="The unofficial API for KissCartoon websites",
long_description=description,
url=URL,
download_url="%s/archive/%s.tar.gz" % (URL, VERSION),
author="Thyrst",
author_email="[email protected]",
license="MIT",
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
"Topic :: Internet :: WWW/HTTP :: Browsers",
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
"Topic :: Utilities",
],
install_requires=[
'js2py',
'grab',
'lxml',
'pycurl',
],
keywords="API kisscartoon",
py_modules=["KissCartoon"],
)