Skip to content
This repository was archived by the owner on Oct 24, 2022. It is now read-only.

Commit ce2dc1a

Browse files
committed
✨ Release 0.4 ✨
- Git data service - Pull requests service - Orgs service - Issues service
1 parent 17e8998 commit ce2dc1a

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

MANIFEST.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
include AUTHORS.rst
22
include README.rst
33
include LICENSE
4-
include requirements.txt
4+
include requirements/base.txt

README.rst

+1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ Achievements
4444
- `Git Data service <http://developer.github.com/v3/git/>`_
4545
- `Pull requests service <http://developer.github.com/v3/pulls/>`_
4646
- `Orgs service <http://developer.github.com/v3/orgs/>`_
47+
- `Issues service <http://developer.github.com/v3/issues/>`_
4748

4849
TODO
4950
-----

pygithub3/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# -*- encoding: utf-8 -*-
33

44
__title__ = 'pygithub3'
5-
__version__ = '0.3'
5+
__version__ = '0.4'
66
__author__ = 'David Medina'
77
__email__ = '[email protected]'
88
__license__ = 'ISC'

setup.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#!/usr/bin/env python
22
# -*- encoding: utf-8 -*-
33

4+
from os.path import join
5+
46
from setuptools import setup, find_packages
57
import pygithub3
68

@@ -26,15 +28,15 @@
2628
'nose',
2729
'mock',
2830
],
29-
install_requires=map(str.strip, open('requirements/base.txt')),
31+
install_requires=map(str.strip, open(join('requirements', 'base.txt'))),
3032
include_package_data=True,
3133
classifiers=(
3234
'Programming Language :: Python',
3335
'Programming Language :: Python :: 2.6',
3436
'Programming Language :: Python :: 2.7',
3537
'License :: OSI Approved :: ISC License (ISCL)',
3638
'Operating System :: OS Independent',
37-
'Development Status :: 3 - Alpha',
39+
'Development Status :: 2 - Pre-Alpha',
3840
'Intended Audience :: Developers',
3941
),
4042
)

0 commit comments

Comments
 (0)