forked from apixu/apixu-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (21 loc) · 832 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
from setuptools import setup, find_packages
__version__ = '0.0.1'
setup(
name='apixu-client',
version=__version__,
author='pprolancer@gmail.com',
description='A client for call Apixu api',
packages=find_packages(),
include_package_data=True,
install_requires=[
'requests',
],
classifiers=['Development Status :: 1 - Production/Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules', ],
)