Mercurial > hg > schema
view setup.py @ 1:5baa23a8d32f default tip
more stuff
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Fri, 17 Feb 2012 12:59:09 -0800 |
parents | f7edadebb1de |
children |
line wrap: on
line source
import os from setuptools import setup, find_packages try: here = os.path.dirname(os.path.abspath(__file__)) description = file(os.path.join(here, 'README.txt')).read() except IOError: description = '' version = "0.0" setup(name='graphserver-schema', version=version, description="playing with schemas", long_description=description, classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers author='Jeff Hammel', author_email='jhammel@mozilla.com', url='', license='', packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), include_package_data=True, zip_safe=False, install_requires=dependencies, entry_points=""" # -*- Entry points: -*- [console_scripts] schema = schema.main:main """, )