Black formatting and added black/click to dev dependencies
This commit is contained in:
23
setup.py
23
setup.py
@ -27,16 +27,19 @@ setup(
|
|||||||
long_description=open("README.md").read(),
|
long_description=open("README.md").read(),
|
||||||
packages=find_packages(exclude=("tests",)),
|
packages=find_packages(exclude=("tests",)),
|
||||||
python_requires=">=3.8,<3.11",
|
python_requires=">=3.8,<3.11",
|
||||||
install_requires=["cadquery-ocp", "ezdxf", "multimethod", "nlopt", "nptyping>=2", "typish", "casadi", "path"],
|
install_requires=[
|
||||||
extras_require = {
|
"cadquery-ocp",
|
||||||
"dev": [
|
"ezdxf",
|
||||||
"docutils",
|
"multimethod",
|
||||||
"ipython",
|
"nlopt",
|
||||||
"pytest",
|
"nptyping>=2",
|
||||||
],
|
"typish",
|
||||||
"ipython": [
|
"casadi",
|
||||||
"ipython",
|
"path",
|
||||||
]
|
],
|
||||||
|
extras_require={
|
||||||
|
"dev": ["docutils", "ipython", "pytest", "black==19.10b0", "click==8.0.4",],
|
||||||
|
"ipython": ["ipython",],
|
||||||
},
|
},
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
|
|||||||
Reference in New Issue
Block a user