From ce2dc1ab531b42fd6b30b8057d58ed7231cfdf01 Mon Sep 17 00:00:00 2001 From: David Medina Date: Sat, 16 Jun 2012 14:19:50 +0200 Subject: :sparkles: Release 0.4 :sparkles: - Git data service - Pull requests service - Orgs service - Issues service --- MANIFEST.in | 2 +- README.rst | 1 + pygithub3/__init__.py | 2 +- setup.py | 6 ++++-- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 93f4e76..072beda 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,4 +1,4 @@ include AUTHORS.rst include README.rst include LICENSE -include requirements.txt +include requirements/base.txt diff --git a/README.rst b/README.rst index 30355e2..a4783c6 100644 --- a/README.rst +++ b/README.rst @@ -44,6 +44,7 @@ Achievements - `Git Data service `_ - `Pull requests service `_ - `Orgs service `_ +- `Issues service `_ TODO ----- diff --git a/pygithub3/__init__.py b/pygithub3/__init__.py index 9a626f3..f46dec1 100644 --- a/pygithub3/__init__.py +++ b/pygithub3/__init__.py @@ -2,7 +2,7 @@ # -*- encoding: utf-8 -*- __title__ = 'pygithub3' -__version__ = '0.3' +__version__ = '0.4' __author__ = 'David Medina' __email__ = 'davidmedina9@gmail.com' __license__ = 'ISC' diff --git a/setup.py b/setup.py index c908532..37062b3 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- +from os.path import join + from setuptools import setup, find_packages import pygithub3 @@ -26,7 +28,7 @@ setup( 'nose', 'mock', ], - install_requires=map(str.strip, open('requirements/base.txt')), + install_requires=map(str.strip, open(join('requirements', 'base.txt'))), include_package_data=True, classifiers=( 'Programming Language :: Python', @@ -34,7 +36,7 @@ setup( 'Programming Language :: Python :: 2.7', 'License :: OSI Approved :: ISC License (ISCL)', 'Operating System :: OS Independent', - 'Development Status :: 3 - Alpha', + 'Development Status :: 2 - Pre-Alpha', 'Intended Audience :: Developers', ), ) -- cgit v1.3-8-gc7d7