comparison setup.py @ 0:f7edadebb1de

initial commit
author Jeff Hammel <jhammel@mozilla.com>
date Fri, 17 Feb 2012 12:20:51 -0800
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:f7edadebb1de
1 import os
2 from setuptools import setup, find_packages
3
4 try:
5 here = os.path.dirname(os.path.abspath(__file__))
6 description = file(os.path.join(here, 'README.txt')).read()
7 except IOError:
8 description = ''
9
10 version = "0.0"
11
12 setup(name='graphserver-schema',
13 version=version,
14 description="playing with schemas",
15 long_description=description,
16 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
17 author='Jeff Hammel',
18 author_email='jhammel@mozilla.com',
19 url='',
20 license='',
21 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
22 include_package_data=True,
23 zip_safe=False,
24 install_requires=dependencies,
25 entry_points="""
26 # -*- Entry points: -*-
27
28 [console_scripts]
29 schema = schema.main:main
30 """,
31 )
32
33