-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
26 lines (22 loc) · 890 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
from setuptools import setup
with open('README.rst', encoding='utf-8') as f:
long_description = f.read()
setup(name='csvutils',
version='0.1.0b1',
description='Utilities for reading/writing structured files with the csv module.',
long_description=long_description,
url='https://github.com/keitherskine/csv-utilities',
author='Keith Erskine',
author_email='[email protected]',
license='MIT',
packages=['csvutils'],
download_url='https://github.com/keitherskine/csv-utilities',
classifiers=(
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Topic :: Text Processing :: General'),
keywords='csv utilities'
)