mirror of
https://github.com/veekun/pokedex.git
synced 2024-08-20 18:16:34 +00:00
22 lines
448 B
Python
22 lines
448 B
Python
from setuptools import setup, find_packages
|
|
setup(
|
|
name = 'Pokedex',
|
|
version = '0.1',
|
|
zip_safe = False,
|
|
packages = find_packages(),
|
|
package_data = {
|
|
'pokedex': ['data/csv/*.csv']
|
|
},
|
|
install_requires=[
|
|
'docutils',
|
|
'SQLAlchemy>=0.6',
|
|
'whoosh>=0.3.0b24',
|
|
'markdown',
|
|
],
|
|
|
|
entry_points = {
|
|
'console_scripts': [
|
|
'pokedex = pokedex:main',
|
|
],
|
|
},
|
|
)
|