mirror of
https://github.com/veekun/pokedex.git
synced 2024-08-20 18:16:34 +00:00
14 lines
332 B
Python
14 lines
332 B
Python
from setuptools import setup, find_packages
|
|
setup(
|
|
name = 'Pokedex',
|
|
version = '0.1',
|
|
packages = find_packages(),
|
|
package_data = { '': 'data' },
|
|
install_requires=['SQLAlchemy>=0.5.1', 'whoosh>=0.1.24'],
|
|
|
|
entry_points = {
|
|
'console_scripts': [
|
|
'pokedex = pokedex:main',
|
|
],
|
|
},
|
|
)
|