-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
26 lines (23 loc) · 957 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
from setuptools import setup, find_packages
__version__ = '0.3.0'
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name='apixu',
version=__version__,
description='Python library for Apixu Weather API',
author='Andrei Avram',
url='https://www.apixu.com/',
packages=find_packages(),
include_package_data=True,
install_requires=required,
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', ],
)