mirror of
https://github.com/veekun/pokedex.git
synced 2024-08-20 18:16:34 +00:00
Update README and improve docker support (#294)
* improve python 3, docker support and README - fix support for python 3.7 - simplify docker support - update readme - remove obsolete item-questions file
This commit is contained in:
parent
722a4664dd
commit
9c25b268eb
10 changed files with 131 additions and 92 deletions
25
setup.py
25
setup.py
|
@ -1,30 +1,29 @@
|
|||
from setuptools import setup, find_packages
|
||||
|
||||
import sys
|
||||
|
||||
setup(
|
||||
name = 'Pokedex',
|
||||
version = '0.1',
|
||||
zip_safe = False,
|
||||
packages = find_packages(),
|
||||
package_data = {
|
||||
name='Pokedex',
|
||||
version='0.1',
|
||||
zip_safe=False,
|
||||
packages=find_packages(),
|
||||
package_data={
|
||||
'pokedex': ['data/csv/*.csv']
|
||||
},
|
||||
install_requires = [
|
||||
'SQLAlchemy>=0.9.7',
|
||||
install_requires=[
|
||||
'SQLAlchemy>=1.0,<2.0',
|
||||
'whoosh>=2.5,<2.7',
|
||||
'markdown==2.4.1',
|
||||
'construct<=2.5.3',
|
||||
'construct==2.5.3',
|
||||
'six>=1.9.0',
|
||||
],
|
||||
entry_points = {
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
'pokedex = pokedex.main:setuptools_entry',
|
||||
],
|
||||
},
|
||||
classifiers = [
|
||||
classifiers=[
|
||||
"Programming Language :: Python :: 2.7",
|
||||
"Programming Language :: Python :: 3.4",
|
||||
"Programming Language :: Python :: 3.5",
|
||||
],
|
||||
"Programming Language :: Python :: 3.7",
|
||||
]
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue