Merge pull request #47 from devxpy/patch-1
Add extras_require to setup()
This commit is contained in:
commit
818350c6bb
6
setup.py
6
setup.py
@ -25,6 +25,11 @@ REQUIRED = [
|
||||
# 'requests', 'maya', 'records',
|
||||
]
|
||||
|
||||
# What packages are optional?
|
||||
EXTRAS = {
|
||||
# 'fancy feature': ['django'],
|
||||
}
|
||||
|
||||
# The rest you shouldn't have to touch too much :)
|
||||
# ------------------------------------------------
|
||||
# Except, perhaps the License and Trove Classifiers!
|
||||
@ -105,6 +110,7 @@ setup(
|
||||
# 'console_scripts': ['mycli=mymodule:cli'],
|
||||
# },
|
||||
install_requires=REQUIRED,
|
||||
extras_require=EXTRAS,
|
||||
include_package_data=True,
|
||||
license='MIT',
|
||||
classifiers=[
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user