Skip to content

Commit d8d9386

Browse files
committed
Preparation for 0.2.0
1 parent cb9a28b commit d8d9386

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

setup.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,16 @@
55
Licensed under MIT. All rights reserved.
66
"""
77
import os
8-
from os import path
9-
108
import sys
119

1210
try:
1311
from setuptools import setup
1412
except ImportError:
1513
from distutils.core import setup
1614

17-
here = path.abspath(path.dirname(__file__))
15+
here = os.path.abspath(os.path.dirname(__file__))
1816

19-
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
17+
with open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
2018
long_description = f.read()
2119

2220
if sys.argv[-1] == 'publish':
@@ -25,7 +23,7 @@
2523

2624
setup(
2725
name='luftdaten',
28-
version='0.1.4',
26+
version='0.2.0',
2927
description='Python API for interacting with luftdaten.info.',
3028
long_description=long_description,
3129
url='https://github.com/fabaff/python-luftdaten',
@@ -44,7 +42,8 @@
4442
'Operating System :: MacOS :: MacOS X',
4543
'Operating System :: Microsoft :: Windows',
4644
'Operating System :: POSIX',
47-
'Programming Language :: Python :: 3.4',
45+
'Programming Language :: Python :: 3.5',
46+
'Programming Language :: Python :: 3.6',
4847
'Topic :: Utilities',
4948
],
5049
)

0 commit comments

Comments
 (0)