Update requirements and setup
This commit is contained in:
parent
92be9c1aa1
commit
6d5c891dfa
|
@ -5,7 +5,7 @@ click==6.7
|
|||
click-spinner==0.1.8
|
||||
colorama==0.3.9
|
||||
colour==0.1.5
|
||||
ereuse-utils[naming, test, session, cli]==0.4.0b21
|
||||
ereuse-utils[naming,test,session,cli]==0.4.0b49
|
||||
Flask==1.0.2
|
||||
Flask-Cors==3.0.6
|
||||
Flask-SQLAlchemy==2.3.2
|
||||
|
|
8
setup.py
8
setup.py
|
@ -1,10 +1,8 @@
|
|||
from collections import OrderedDict
|
||||
from pathlib import Path
|
||||
|
||||
from setuptools import find_packages, setup
|
||||
|
||||
with open('README.md', encoding='utf8') as f:
|
||||
long_description = f.read()
|
||||
|
||||
test_requires = [
|
||||
'pytest',
|
||||
'requests_mock'
|
||||
|
@ -26,13 +24,13 @@ setup(
|
|||
packages=find_packages(),
|
||||
include_package_data=True,
|
||||
python_requires='>=3.5.3',
|
||||
long_description=long_description,
|
||||
long_description=Path('README.md').read_text('utf8'),
|
||||
long_description_content_type='text/markdown',
|
||||
install_requires=[
|
||||
'teal>=0.2.0a38', # teal always first
|
||||
'click',
|
||||
'click-spinner',
|
||||
'ereuse-utils[naming, test, session, cli]>=0.4b21',
|
||||
'ereuse-utils[naming,test,session,cli]>=0.4b49',
|
||||
'hashids',
|
||||
'marshmallow_enum',
|
||||
'psycopg2-binary',
|
||||
|
|
Reference in New Issue