-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
49 lines (47 loc) · 1.58 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
47
48
49
import os
from setuptools import setup
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as fd:
return fd.read()
setup(
name='pynghttp2',
version='0.3.2',
platforms=['POSIX/Unix'],
description='Asyncio bindings for libnghttp2 based on ctypes',
long_description=read('README.rst'),
long_description_content_type='text/x-rst; charset=UTF-8',
license='MIT',
author='Lucas Kahlert',
author_email='[email protected]',
url='https://github.com/kahlertl/pynghttp2',
keywords=' '.join(['HTTP/2', 'nghttp2', 'bindings', 'asyncio', 'ctypes']),
packages=['pynghttp2'],
install_requires=[],
extras_require={
'dev': [
'pytest',
'pytest-asyncio',
'pytest-timeout',
'tox',
]
},
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development',
],
project_urls={
'Source Code': 'https://github.com/kahlertl/pynghttp2/',
'Documentation': 'https://pynghttp2.readthedocs.io/',
'Bug Tracker': 'https://github.com/kahlertl/pynghttp2/issues',
},
)