Skip to content

Commit ae39297

Browse files
committed
pypi update
1 parent 975a72f commit ae39297

2 files changed

Lines changed: 7 additions & 6 deletions

File tree

.gitignore

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
/.venv/**
2-
**/__pycache__/**
3-
/.idea/**
4-
**/*.pyc
1+
.venv/
2+
__pycache__/
3+
/.idea/
4+
**/*.pyc
5+
dist/

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@ def readme_text():
55
with open('README.rst') as f:
66
return f.read()
77

8+
89
setup(
910
name='pokebase',
1011
packages=['pokebase'],
11-
version='1.0.0',
12+
version='1.1.0',
1213
description='A Python wrapper for the friendly PokeAPI database',
1314
long_description=readme_text(),
1415
author='Greg Hilmes',
1516
author_email='99hilmes.g@gmail.com',
1617
url='https://github.com/GregHilmes/pokebase',
17-
download_url='https://github.com/GregHilmes/pokebase/archive/1.0.0.tar.gz',
1818
keywords=['database', 'pokemon', 'wrapper'],
1919
install_requires=['requests'],
2020
license='BSD License',

0 commit comments

Comments
 (0)