1 parent 73600ae commit 3ccb1cdCopy full SHA for 3ccb1cd
1 file changed
setup.py
@@ -0,0 +1,31 @@
1
+#!/usr/bin/env python
2
+# -*- coding: utf-8 -*-
3
+import codecs
4
+
5
+try:
6
+ from setuptools import setup, find_packages
7
+except ImportError:
8
+ from ez_setup import use_setuptools
9
+ use_setuptools()
10
11
12
+import github2
13
14
+setup(
15
+ name='python-github2',
16
+ version=github2.__version__,
17
+ description=github2.__doc__,
18
+ author=github2.__author__,
19
+ author_email=github2.__contact__,
20
+ url=github2.__homepage__,
21
+ platforms=["any"],
22
+ packages=find_packages(exclude=['ez_setup']),
23
+ install_requires=[
24
+ ],
25
+ classifiers=[
26
+ "Development Status :: 3 - Alpha",
27
+ "Operating System :: OS Independent",
28
+ "Programming Language :: Python",
29
30
+ long_description=codecs.open('README.rst', "r", "utf-8").read(),
31
+)
0 commit comments