-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathsetup.py
28 lines (24 loc) · 793 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
#!/usr/bin/env python
from setuptools import setup, find_packages
from sseclient.version import name, version
with open('README.rst') as readme:
long_description = readme.read()
setup(
name=name,
version=version,
author='Maxime Petazzoni',
author_email='maxime.petazzoni@bulix.org',
description='SSE client for Python',
license='Apache Software License v2',
long_description=long_description,
zip_safe=True,
packages=find_packages(),
package_data={'sseclient': ['py.typed', '*.pyi']},
classifiers=[
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
url='https://github.com/mpetazzoni/sseclient',
)