yapps/setup.py

31 lines
919 B
Python

#!/usr/bin/env python
from setuptools import setup, find_packages
import os
pkg_root = os.path.dirname(__file__)
# Error-handling here is to allow package to be built w/o README included
try: readme = open(os.path.join(pkg_root, 'README.txt')).read()
except IOError: readme = ''
setup(
name = 'yapps',
version = '14.04.0',
author = 'Amit J. Patel, Matthias Urlichs',
author_email = 'amitp@cs.stanford.edu, smurf@debian.org',
maintainer = 'Mike Kazantsev',
maintainer_email = 'mk.fraggod@gmail.com',
license = 'MIT',
url = 'https://github.com/mk-fg/yapps',
description = 'Yet Another Python Parser System',
long_description = readme,
packages = find_packages(),
include_package_data = True,
package_data = {'': ['README.txt']},
exclude_package_data = {'': ['README.*']},
entry_points = dict(console_scripts=[
'yapps2 = yapps.cli_tool:main' ]) )