-
Notifications
You must be signed in to change notification settings - Fork 87
/
setup.py
executable file
·31 lines (28 loc) · 1.31 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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
version = __import__('unicodecsv').__version__
setup(
name='unicodecsv',
version=version,
description="Python2's stdlib csv module is nice, but it doesn't support unicode. This module is a drop-in replacement which *does*.",
long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst'), 'rb').read().decode('utf-8'),
author='Jeremy Dunck',
author_email='[email protected]',
url='https://github.com/jdunck/python-unicodecsv',
packages=find_packages(),
tests_require=['unittest2>=0.5.1'],
test_suite='runtests.get_suite',
license='BSD License',
classifiers=['Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: PyPy',
'Programming Language :: Python :: Implementation :: CPython',],
)