-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
46 lines (39 loc) · 1.27 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
37
38
39
40
41
42
43
44
45
46
from setuptools import setup
setup(
name='gzip-stream',
version='1.2.0',
py_modules=['gzip_stream'],
provides=['gzip_stream'],
description='Compress stream by GZIP on the fly.',
long_description=open('README.rst').read(),
keywords=['gzip', 'compression'],
url='https://github.com/leenr/gzip-stream',
author='leenr',
author_email='[email protected]',
maintainer='leenr',
maintainer_email='[email protected]',
platforms=['posix'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Software Development :: Libraries'
],
python_requires='~=3.5',
extras_require={
'develop': [
'pytest~=5.0',
'pytest-cov~=2.7',
'pylama~=7.7',
'faker~=2.0'
]
}
)