FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-github3/setup.py at master · jgruhl/python-github3 · GitHub
jgruhl
/
python-github3
Public
forked from
copitux/python-github3
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
python-github3
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
42 lines (38 loc) · 1.17 KB
Breadcrumbs
python-github3
/
setup.py
Copy path
File metadata and controls
42 lines (38 loc) · 1.17 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
from
os
.
path
import
join
from
setuptools
import
setup
,
find_packages
import
pygithub3
# Odd hack to get 'python setup.py test' working on py2.7
try
:
import
multiprocessing
import
logging
except
ImportError
:
pass
setup
(
name
=
pygithub3
.
__name__
,
version
=
pygithub3
.
__version__
,
author
=
pygithub3
.
__author__
,
author_email
=
pygithub3
.
__email__
,
url
=
'https://github.com/copitux/python-github3'
,
description
=
'Python wrapper for the github v3 api'
,
long_description
=
open
(
'README.rst'
).
read
(),
license
=
'ISC'
,
packages
=
find_packages
(
exclude
=
[
'*tests*'
]),
test_suite
=
'nose.collector'
,
tests_require
=
[
'nose'
,
'mock'
,
],
install_requires
=
map
(
str
.
strip
,
open
(
join
(
'requirements'
,
'base.txt'
))),
include_package_data
=
True
,
classifiers
=
(
'Programming Language :: Python'
,
'Programming Language :: Python :: 2.6'
,
'Programming Language :: Python :: 2.7'
,
'License :: OSI Approved :: ISC License (ISCL)'
,
'Operating System :: OS Independent'
,
'Development Status :: 2 - Pre-Alpha'
,
'Intended Audience :: Developers'
,
),
)
Back
|
FazBrowse Home
|
New Git URL