mirror of
https://github.com/veekun/pokedex.git
synced 2024-08-20 18:16:34 +00:00
fce02ad9eb
The package_data line was still wrong. Also turned off zip_safe, since it's really not; pokedex setup tries to write to the install directory! Finally, bumped the whoosh version; the beta I required has been taken off pypi, and the bugs in b6 seem to be gone now.
15 lines
366 B
Python
15 lines
366 B
Python
from setuptools import setup, find_packages
|
|
setup(
|
|
name = 'Pokedex',
|
|
version = '0.1',
|
|
zip_safe = False,
|
|
packages = find_packages(),
|
|
package_data = { '': ['pokedex/data'] },
|
|
install_requires=['SQLAlchemy>=0.5.1', 'whoosh>=0.3.0b24'],
|
|
|
|
entry_points = {
|
|
'console_scripts': [
|
|
'pokedex = pokedex:main',
|
|
],
|
|
},
|
|
)
|