Skip to content

Commit

Permalink
v1
Browse files Browse the repository at this point in the history
  • Loading branch information
fp12 committed Jan 16, 2017
1 parent 6adc191 commit af52f58
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 9 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
venv/
htmlcov/
build/
dist/
achallonge.egg-info/
*.pyc
.secrets
docs/_build
.coverage
.coverage
.pypirc
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Modern library that is more than just a wrapper for the Challonge web API

# Installation

pip install -e git+http://github.com/fp12/achallonge#egg=achallonge
pip install achallonge

# Usage

Expand Down
2 changes: 1 addition & 1 deletion challonge/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# flake8: noqa

__version__ = "0.5.0"
__version__ = "1.0.0"
__author__ = "fp12"

AUTO_GET_PARTICIPANTS = True
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@
# built documents.
#
# The short X.Y version.
version = '0.5'
version = '1.0'
# The full version, including alpha/beta/rc tags.
release = '0.5.0'
release = '1.0.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,17 @@


setup(name='achallonge',
author='fp12',
author='Fabien Poupineau (fp12)',
url='https://github.com/fp12/achallonge',
version='0.5.0',
version='1.0.0',
packages=find_packages(),
license='MIT',
description='A python library to use the Challonge API',
long_description=readme,
include_package_data=True,
install_requires=requirements,
classifiers=[
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Natural Language :: English',
Expand All @@ -38,5 +38,6 @@
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
]
],
keywords='challonge tournament match',
)

0 comments on commit af52f58

Please sign in to comment.