-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·29 lines (27 loc) · 907 Bytes
/
setup.py
File metadata and controls
executable file
·29 lines (27 loc) · 907 Bytes
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
#!/usr/bin/env python
from setuptools import setup
setup(
name='napper',
version='0.1a1',
description='A REST client for Python',
license='MIT',
url='https://github.com/epsy/napper',
author='Yann Kaiser',
author_email='kaiser.yann@gmail.com',
install_requires=['aiohttp', 'chardet'],
packages=('napper', 'napper.tests'),
keywords=[
'http', 'requests', 'api', 'asyncio', 'asynchronous'
],
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.5",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Topic :: Internet :: WWW/HTTP",
],
)