-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (26 loc) · 875 Bytes
/
setup.py
File metadata and controls
30 lines (26 loc) · 875 Bytes
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
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='cdata',
version='0.1.9',
description='see data, handy snippets for conversion, and ETL.',
long_description=readme(),
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.7',
'Topic :: Text Processing',
],
url='http://github.com/cnschema/cdata',
author='Li Ding',
author_email='lidingpku@gmail.com',
license='Apache 2.0',
packages=['cdata'],
install_requires=[
'xlrd', 'xlwt', 'jieba', 'requests','wikipedia'
],
package_data = {'': ['cdata/*.json','cdata/*.txt']},
test_suite='nose.collector',
tests_require=['nose'],
zip_safe=False)