forked from ask/python-github2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (31 loc) · 908 Bytes
/
setup.py
File metadata and controls
34 lines (31 loc) · 908 Bytes
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import codecs
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
import github2
setup(
name='github2',
version=github2.__version__,
description=github2.__doc__,
author=github2.__author__,
author_email=github2.__contact__,
url=github2.__homepage__,
license='BSD',
platforms=["any"],
packages=find_packages(exclude=['ez_setup']),
scripts=['github2/bin/github_manage_collaborators'],
install_requires=[
],
classifiers=[
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
"Programming Language :: Python",
"License :: OSI Approved :: BSD License",
],
long_description=codecs.open('README.rst', "r", "utf-8").read(),
)