Skip to content

Commit

Permalink
Preparing release 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mgilligan committed Jul 30, 2013
1 parent 7c046e7 commit 1f8b2ef
Showing 1 changed file with 40 additions and 40 deletions.
80 changes: 40 additions & 40 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,40 +1,40 @@
from setuptools import setup, find_packages
import sys


extras_require = dict(
geo=('geoalchemy>=0.6'),
oracle=('cx_oracle>=5.1'),
postgresql=('psycopg2>=2.4.2'),
)


install_requires = ['sqlalchemy>=0.8', ]
if sys.version_info[:2] <= (2, 6):
install_requires.extend(['argparse>=1.2.1', 'unittest2'])


setup(
name='gtfsdb',
version='0.1.0dev',
description='GTFS Database',
long_description=open('README').read(),
keywords='GTFS',
author='Mike Gilligan',
author_email='[email protected]',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
extras_require=extras_require,
entry_points={
'console_scripts': ['gtfsdb-load = gtfsdb.scripts.load:main']
},
classifiers=(
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
),
)
from setuptools import setup, find_packages
import sys


extras_require = dict(
geo=('geoalchemy>=0.6'),
oracle=('cx_oracle>=5.1'),
postgresql=('psycopg2>=2.4.2'),
)


install_requires = ['sqlalchemy>=0.8', ]
if sys.version_info[:2] <= (2, 6):
install_requires.extend(['argparse>=1.2.1', 'unittest2'])


setup(
name='gtfsdb',
version='0.1.0',
description='GTFS Database',
long_description=open('README').read(),
keywords='GTFS',
author='Mike Gilligan',
author_email='[email protected]',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
extras_require=extras_require,
entry_points={
'console_scripts': ['gtfsdb-load = gtfsdb.scripts.load:main']
},
classifiers=(
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
),
)

0 comments on commit 1f8b2ef

Please sign in to comment.