Split specific dependecies in extras require
This commit is contained in:
parent
9134502ec4
commit
b27cae5b1e
1 changed files with 15 additions and 7 deletions
22
setup.py
22
setup.py
|
@ -18,20 +18,28 @@ setup(
|
|||
'Programming Language :: Python',
|
||||
],
|
||||
install_requires=[
|
||||
'email3',
|
||||
'mako',
|
||||
'mysqlclient',
|
||||
'progressbar',
|
||||
'psycopg2',
|
||||
'python-dateutil',
|
||||
'python-ldap',
|
||||
'pytz',
|
||||
],
|
||||
extras_require={
|
||||
'dev': [
|
||||
'pytest',
|
||||
'pylint',
|
||||
],
|
||||
'ldap': [
|
||||
'python-ldap',
|
||||
'python-dateutil',
|
||||
'pytz',
|
||||
],
|
||||
'email': [
|
||||
'email3',
|
||||
'mako',
|
||||
],
|
||||
'pgsql': [
|
||||
'psycopg2',
|
||||
],
|
||||
'mysql': [
|
||||
'mysqlclient',
|
||||
],
|
||||
},
|
||||
author='Benjamin Renard',
|
||||
author_email='brenard@zionetrix.net',
|
||||
|
|
Loading…
Reference in a new issue