veekun_pokedex/setup.py
Kip Yin c63b6522bf Limit construct version to 2.5.3
This project uses `construct` 2.5 and lower, and the latest `construct` version (2.9)
is incompatible with 2.5.

Resolves #265
2019-07-15 13:04:05 -07:00

31 lines
692 B
Python

from setuptools import setup, find_packages
import sys
setup(
name = 'Pokedex',
version = '0.1',
zip_safe = False,
packages = find_packages(),
package_data = {
'pokedex': ['data/csv/*.csv']
},
install_requires = [
'SQLAlchemy>=0.9.7',
'whoosh>=2.5,<2.7',
'markdown==2.4.1',
'construct<=2.5.3',
'six>=1.9.0',
],
entry_points = {
'console_scripts': [
'pokedex = pokedex.main:setuptools_entry',
],
},
classifiers = [
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
],
)