forked from yichen0831/opencc-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (43 loc) · 1.52 KB
/
Copy pathsetup.py
File metadata and controls
48 lines (43 loc) · 1.52 KB
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
45
46
47
48
from setuptools import setup, find_packages
from codecs import open
from os import path
def readme():
with open('README.md', encoding='utf-8') as f:
return f.read()
setup(
name='opencc-python-reimplemented',
version='0.1.8',
description='OpenCC made with Python',
long_description=readme(),
long_description_content_type='text/markdown',
url='https://github.com/yichen0831/opencc-python',
author='Yichen Huang (Eugene)',
author_email='yichen0831@gmail.com',
license='Apache License',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
keywords='chinese conversion',
packages=['opencc'],
install_requires=[],
package_data={
'opencc': [
'README.md',
'LICENSE',
'NOTICE.txt',
'config/*.json',
'dictionary/*.txt',
'testcases/*.json',
]
},
)