forked from SWW13/python-rfc6266-parser
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
37 lines (34 loc) · 1.12 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
31
32
33
34
35
36
from setuptools import setup
setup(
author='Arseniy Baranov',
author_email='arseniy.baranov@gmail.com',
description='Fork of rfc6266 package with python 3.6+ support',
url='https://github.com/genme/python-rfc6266-parser',
keywords='rfc6266 parser Content-Disposition http attachments',
name='rfc6266-parser',
version='0.1.0',
license='GNU LGPL',
platforms='OS-independent',
py_modules=['rfc6266_parser', 'test_rfc6266_parser'],
install_requires=[
'werkzeug==1.0.1'
],
extras_require={
'dev': [
'pytest==4.6.11',
'flake8',
'pytest-localserver',
'requests',
'httplib2'
],
},
long_description=open('README').read(),
classifiers=(
'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',
),
)