2009-02-05 00:05:42 -08:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
|
|
name = 'Pokedex',
|
|
|
|
version = '0.1',
|
2009-09-13 20:11:05 -07:00
|
|
|
zip_safe = False,
|
2009-02-05 00:05:42 -08:00
|
|
|
packages = find_packages(),
|
2010-05-13 18:06:50 -07:00
|
|
|
package_data = {
|
|
|
|
'pokedex': ['data/csv/*.csv']
|
|
|
|
},
|
2009-11-01 20:42:13 -08:00
|
|
|
install_requires=[
|
2012-06-05 14:47:42 -07:00
|
|
|
'SQLAlchemy>=0.7.3',
|
2014-03-11 18:21:08 -07:00
|
|
|
'whoosh>=2.5',
|
2010-05-31 15:13:34 -07:00
|
|
|
'markdown',
|
2010-06-17 21:43:50 -07:00
|
|
|
'construct',
|
2009-11-01 20:42:13 -08:00
|
|
|
],
|
2009-02-05 00:05:42 -08:00
|
|
|
|
|
|
|
entry_points = {
|
|
|
|
'console_scripts': [
|
2013-08-09 13:11:54 -07:00
|
|
|
'pokedex = pokedex.main:setuptools_entry',
|
2009-02-05 00:05:42 -08:00
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|