aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
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 /setup.py
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
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py6
1 files changed, 4 insertions, 2 deletions
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',
),
)