aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Medina <davidmedina9@gmail.com>2012-06-16 14:19:50 +0200
committerDavid Medina <davidmedina9@gmail.com>2012-06-16 16:10:45 +0200
commitce2dc1ab531b42fd6b30b8057d58ed7231cfdf01 (patch)
treebe5678801c860cae2ed9691818a1d069642b883c
parentFix type doc (diff)
downloadpython-github3-ce2dc1ab531b42fd6b30b8057d58ed7231cfdf01.tar.xz
python-github3-ce2dc1ab531b42fd6b30b8057d58ed7231cfdf01.zip
:sparkles: Release 0.4 :sparkles:0.4
- Git data service - Pull requests service - Orgs service - Issues service
-rw-r--r--MANIFEST.in2
-rw-r--r--README.rst1
-rw-r--r--pygithub3/__init__.py2
-rw-r--r--setup.py6
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 <http://developer.github.com/v3/git/>`_
- `Pull requests service <http://developer.github.com/v3/pulls/>`_
- `Orgs service <http://developer.github.com/v3/orgs/>`_
+- `Issues service <http://developer.github.com/v3/issues/>`_
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',
),
)