-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
29 lines (26 loc) · 938 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
from setuptools import setup
def fread(fn):
return open(fn, 'rb').read().decode('utf-8')
setup(
name='backports.csv',
license='Python License',
description='Backport of Python 3 csv module',
long_description=fread('README.rst') + '\n\n' + fread('HISTORY.rst'),
author='Ryan Hiebert',
author_email='[email protected]',
url='https://github.com/ryanhiebert/backports.csv',
version='1.0.7',
py_modules=['backports.csv'],
namespace_packages=['backports'],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
package_dir={'': 'src'},
)