mirror of
https://github.com/status-im/PyGithub.git
synced 2026-08-31 10:51:14 +00:00
26 lines
798 B
Python
26 lines
798 B
Python
#!/usr/bin/env python
|
|
|
|
from distutils.core import setup
|
|
|
|
setup(
|
|
name = 'PyGithub',
|
|
version = '0.1-beta',
|
|
description = 'Use the full Github API v3',
|
|
author = 'Vincent Jacques',
|
|
author_email = 'vincent@vincent-jacques.net',
|
|
url = 'http://github.com/jacquev6/PyGithub',
|
|
long_description = open( "CheeseShopDescription.rst" ).read(),
|
|
packages = [
|
|
'github'
|
|
],
|
|
classifiers=[
|
|
"Development Status :: 4 - Beta",
|
|
"Environment :: Web Environment",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
|
|
"Operating System :: OS Independent",
|
|
"Programming Language :: Python",
|
|
"Topic :: Software Development",
|
|
],
|
|
)
|