forked from afer92/apize
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 814 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 814 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
from setuptools import setup
setup(
name = 'apize',
version = '0.2.6',
author = 'herrersystem',
author_email = 'anton.millescamps@evhunter.fr',
url = 'http://github.com/herrersystem/apize',
keywords = 'apize api client',
description = 'Write quickly and easily HTTP API clients',
license = 'GNU General Public License (GPL)',
packages = ['apize'],
install_requires = ['requests'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
)