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