-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (22 loc) · 917 Bytes
/
setup.py
File metadata and controls
28 lines (22 loc) · 917 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='WunderPython',
version='0.1a1',
description='API wrapper for the Wunderground API',
long_description='API wrapper for the Wunderground API',
author='Robin Jespersen',
author_email='robin.jespersen@tum.de',
url='https://github.com/RobinJespersen/WunderPython',
license = "MIT",
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7'
],
keywords="weather data wunderground",
packages = find_packages(),
test_suite="tests")