-
Notifications
You must be signed in to change notification settings - Fork 171
/
setup.py
31 lines (28 loc) · 1012 Bytes
/
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
#!/usr/bin/env python
# -*- coding:utf-8 -*-
"""
Author:cleverdeng
E-mail:clverdeng@gmail.com
"""
from distutils.core import setup
from pinyin import __version__ as version
setup(
name='pinyin',
version=version,
description='hanzi -> pinyin,With Python',
author='cleverdeng',
author_email='cleverdeng@gmail.com',
url='http://github.com/cleverdeng/pinyin.py',
py_modules=['pinyin'],
license='MIT License',
platforms=['any'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)