-
Notifications
You must be signed in to change notification settings - Fork 44
/
setup.py
28 lines (25 loc) · 968 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
from setuptools import setup
setup(
author='Gabriel de Perthuis',
author_email='[email protected]',
description='Parse and generate Content-Disposition headers',
url='https://github.com/g2p/rfc6266',
keywords='rfc6266 Content-Disposition http attachments',
name='rfc6266',
version='0.0.4', # semver
license='GNU LGPL',
platforms='OS-independent',
py_modules=['rfc6266', 'test_rfc6266'],
install_requires=['LEPL'],
use_2to3=True,
long_description=open('README').read(),
classifiers=(
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Topic :: Internet :: WWW/HTTP',
),
)