File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed
Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change 55Licensed under MIT. All rights reserved.
66"""
77import os
8- from os import path
9-
108import sys
119
1210try :
1311 from setuptools import setup
1412except 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
2220if sys .argv [- 1 ] == 'publish' :
2523
2624setup (
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' ,
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)
You can’t perform that action at this time.
0 commit comments