mirror of
https://github.com/veekun/pokedex.git
synced 2024-08-20 18:16:34 +00:00
17999c5b1a
Apparently the latest markdown no longer works against py2.6; Travis fails on trying to import importlib. I added a dependency on the PyPI backport to see if that helps for now.
31 lines
603 B
Python
31 lines
603 B
Python
from setuptools import setup, find_packages
|
|
|
|
import sys
|
|
|
|
deps = [
|
|
'SQLAlchemy>=0.9.7',
|
|
'whoosh>=2.5,<2.7',
|
|
'markdown',
|
|
'construct',
|
|
'six>=1.9.0',
|
|
]
|
|
if sys.version_info < (2, 7):
|
|
# We don't actually use this, but markdown does
|
|
deps.append('importlib')
|
|
|
|
setup(
|
|
name = 'Pokedex',
|
|
version = '0.1',
|
|
zip_safe = False,
|
|
packages = find_packages(),
|
|
package_data = {
|
|
'pokedex': ['data/csv/*.csv']
|
|
},
|
|
install_requires=deps,
|
|
|
|
entry_points = {
|
|
'console_scripts': [
|
|
'pokedex = pokedex.main:setuptools_entry',
|
|
],
|
|
},
|
|
)
|