This repository has been archived by the owner on Feb 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 43
/
setup.py
43 lines (38 loc) · 1.44 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
#coding=utf-8
import os
import codecs
from setuptools import setup
import PyWapFetion
readme = os.path.join(os.path.dirname(__file__), "README.md")
setup(
name=PyWapFetion.__name__,
version=PyWapFetion.__version__,
packages=['PyWapFetion'],
keywords='library mobile fetion',
author=PyWapFetion.__author__,
author_email='[email protected]',
url=PyWapFetion.__website__,
description='A simple python lib for WapFetion',
long_description=codecs.open(readme, encoding='utf8').read(),
license=PyWapFetion.__license__,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Natural Language :: Chinese (Simplified)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries',
'Topic :: Utilities',
'Topic :: Software Development :: Libraries :: Python Modules',
],
zip_safe=False,
)