-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (27 loc) · 866 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
29
from setuptools import setup
with open('README.md') as file:
long_description = file.read()
setup(
name = 'drowse',
version = '0.2.0',
author = 'Lorenzo Gaggini',
author_email = '[email protected]',
packages = ['drowse'],
url = 'https://github.com/lgaggini/drowse',
license = 'LICENSE',
keywords = ['REST', 'API', 'HTTP'],
description = 'Human readable slim REST client',
long_description = long_description,
classifiers = [
'Programming Language :: Python',
'Development Status :: 4 - Beta',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP'
],
install_requires = [
"requests"
],
)