mirror of
https://github.com/veekun/pokedex.git
synced 2024-08-20 18:16:34 +00:00
Added SQLAlchemy to setup.py and fixed a typo in .gitignore.
This commit is contained in:
parent
774690026c
commit
33e659c79a
2 changed files with 2 additions and 1 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -3,4 +3,4 @@
|
||||||
~*
|
~*
|
||||||
*.swp
|
*.swp
|
||||||
|
|
||||||
*.egg-into
|
*.egg-info
|
||||||
|
|
1
setup.py
1
setup.py
|
@ -4,6 +4,7 @@ setup(
|
||||||
version = '0.1',
|
version = '0.1',
|
||||||
packages = find_packages(),
|
packages = find_packages(),
|
||||||
package_data = { '': 'data' },
|
package_data = { '': 'data' },
|
||||||
|
install_requires=['SQLAlchemy>=0.5.1'],
|
||||||
|
|
||||||
entry_points = {
|
entry_points = {
|
||||||
'console_scripts': [
|
'console_scripts': [
|
||||||
|
|
Loading…
Reference in a new issue