2009-02-05 08:05:42 +00:00
|
|
|
from setuptools import setup, find_packages
|
2015-10-05 15:19:13 +00:00
|
|
|
|
|
|
|
import sys
|
|
|
|
|
2009-02-05 08:05:42 +00:00
|
|
|
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']
|
|
|
|
},
|
2015-11-05 20:45:58 +00:00
|
|
|
install_requires = [
|
|
|
|
'SQLAlchemy>=0.9.7',
|
|
|
|
'whoosh>=2.5,<2.7',
|
|
|
|
'markdown',
|
|
|
|
'construct',
|
|
|
|
'six>=1.9.0',
|
|
|
|
],
|
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
|
|
|
],
|
|
|
|
},
|
2015-11-05 20:54:16 +00:00
|
|
|
classifiers = [
|
|
|
|
"Programming Language :: Python :: 2.7",
|
|
|
|
"Programming Language :: Python :: 3.4",
|
|
|
|
"Programming Language :: Python :: 3.5",
|
|
|
|
],
|
2009-02-05 08:05:42 +00:00
|
|
|
)
|