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 43 44 45 46 47 48 49 50
|
"""
Grip
----
Render local readme files before sending off to GitHub.
Grip is easy to set up
``````````````````````
::
$ pip install grip
$ cd myproject
$ grip
Links
`````
* `Website <http://github.com/joeyespo/grip>`_
"""
import os
from setuptools import setup, find_packages
def read(filename):
with open(os.path.join(os.path.dirname(__file__), filename)) as f:
return f.read()
setup(
name='grip',
version='4.6.1',
description='Render local readme files before sending off to GitHub.',
long_description=__doc__,
author='Joe Esposito',
author_email='joe@joeyespo.com',
url='http://github.com/joeyespo/grip',
license='MIT',
platforms='any',
packages=find_packages(),
package_data={'grip': ['static/*.*', 'templates/*']},
install_requires=read('requirements.txt').splitlines(),
extras_require={'tests': read('requirements-test.txt').splitlines()},
zip_safe=False,
entry_points={'console_scripts': ['grip = grip:main']},
)
|