forked from arjunchandra/python-yr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 1.23 KB
/
setup.py
File metadata and controls
34 lines (32 loc) · 1.23 KB
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
30
31
32
33
34
#!/usr/bin/env python3
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='python-yr',
version='1.4.5',
description='Get the forecast from the norwegian wheather service yr.no in python',
long_description=open('README.rst').read() + '\n' + open('CHANGES.rst').read(),
author='Alexander Hansen',
author_email='alexander@alexanderhansen.no',
maintainer='Hugo Shamrock',
maintainer_email='hugo.shamrock@gmail.com',
url='https://github.com/wckd/python-yr',
packages=['yr'],
classifiers=[ # https://pypi.python.org/pypi?%3Aaction=list_classifiers
'Programming Language :: Python :: 3',
'Programming Language :: Python',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Internet',
],
package_data={
'yr': [
'languages/*.json',
],
},
install_requires=['xmltodict'], # $$solve$$ ~> /usr/lib/python3.4/distutils/dist.py:260: UserWarning: Unknown distribution option: 'install_requires' warnings.warn(msg)
)