Skip to content

Commit

Permalink
Add setup script
Browse files Browse the repository at this point in the history
Implements #6
  • Loading branch information
dlindquist authored and cvrebert committed Jan 15, 2014
1 parent fe78814 commit 29c9c6e
Show file tree
Hide file tree
Showing 3 changed files with 61 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
*.pyc
.coverage
cover
*.egg-info
/build
/dist
MANIFEST
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include *.txt *.md
56 changes: 56 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
#!/usr/bin/env python

from distutils.core import setup
import os
import sys


NAME = 'restfulgit'

VERSION = '0.1.0'

MIN_PYTHON_VERSION = (2, 7)
MIN_UNSUPPORTED_VERSION = 3

CLASSIFIERS = [
'Development Status :: 2 - Beta',
'Environment :: Web Environment',
'Framework :: Flask',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Version Control'
]


if sys.version_info < MIN_PYTHON_VERSION or sys.version_info[0] >= MIN_UNSUPPORTED_VERSION:
raise Exception(
'%s==%s requires Python >= %s and Python < %d' % (
NAME,
VERSION,
'.'.join([str(x) for x in MIN_PYTHON_VERSION]),
MIN_UNSUPPORTED_VERSION
)
)

with open(os.path.join(os.path.dirname(__file__), 'requirements.txt')) as f:
requirements = f.readlines()

setup(
name=NAME,
version=VERSION,
description='A restful interface for accessing data from Git repositories',
long_description=open('README.md').read(),
classifiers=CLASSIFIERS,
maintainer='Chris Rebert',
maintainer_email='[email protected]',
author='Rajiv Makhijani',
url='https://github.com/hulu/restfulgit',
provides=[NAME],
packages=['restfulgit'],
zip_safe=True,
install_requires=requirements
)

0 comments on commit 29c9c6e

Please sign in to comment.