Skip to content

Commit

Permalink
setuptools files so we can push pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
kvbik committed Oct 1, 2012
1 parent a8c5a99 commit ef93996
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 0 deletions.
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
recursive-include thingdoc *
global-exclude *.py[co]
include AUTHORS README COPYING
File renamed without changes.
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Jinja>=1.2
25 changes: 25 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
from setuptools import setup
from os import path

f = open(path.join(path.dirname(__file__), 'README'))
long_description = f.read().strip()
f.close()

f = open(path.join(path.dirname(__file__), 'requirements.txt'))
install_requires = f.read().strip()
f.close()

setup(
name='ThingDoc',
version='1.0',
description='ThingDoc is a clever things comment parser.',
long_description=long_description,
license='GNU GPLv3',
author='Josef Prusa',
author_email='[email protected]',
url='https://github.com/josefprusa/ThingDoc',
packages = ['thingdoc'],
scripts=['bin/thingdoc'],
install_requires=install_requires,
)

0 comments on commit ef93996

Please sign in to comment.