Bumping version number; adding trove classifiers (including those for python-version limitations).
This commit is contained in:
parent
3d87dac040
commit
6b02b59967
1 changed files with 10 additions and 2 deletions
12
setup.py
12
setup.py
|
@ -7,7 +7,7 @@ with open('requirements.txt') as f:
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='pyicloud',
|
name='pyicloud',
|
||||||
version='0.2.1',
|
version='0.3.0',
|
||||||
url='https://github.com/picklepete/pyicloud',
|
url='https://github.com/picklepete/pyicloud',
|
||||||
description=(
|
description=(
|
||||||
'PyiCloud is a module which allows pythonistas to '
|
'PyiCloud is a module which allows pythonistas to '
|
||||||
|
@ -16,5 +16,13 @@ setup(
|
||||||
author='Peter Evans',
|
author='Peter Evans',
|
||||||
author_email='evans.peter@gmail.com',
|
author_email='evans.peter@gmail.com',
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
install_requires=required
|
install_requires=required,
|
||||||
|
classifiers=[
|
||||||
|
'Intended Audience :: Developers',
|
||||||
|
'Operating System :: OS Independent',
|
||||||
|
'Programming Language :: Python',
|
||||||
|
'Programming Language :: Python :: 2.6',
|
||||||
|
'Programming Language :: Python :: 2.7',
|
||||||
|
'Programming Language :: Python :: 3',
|
||||||
|
],
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue