Integrated suggestions and added back version number.

This commit is contained in:
Jeremy Wright
2022-05-19 11:36:12 -04:00
parent d3c1a5cce9
commit f925063137

View File

@ -14,17 +14,20 @@
import os import os
from setuptools import setup, find_packages from setuptools import setup, find_packages
version = "2.1"
setup( setup(
name="cadquery", name="cadquery",
version=version, version=version,
url="https://github.com/dcowden/cadquery", url="https://github.com/CadQuery/cadquery",
license="Apache Public License 2.0", license="Apache Public License 2.0",
author="David Cowden", author="David Cowden",
author_email="dave.cowden@gmail.com", author_email="dave.cowden@gmail.com",
description="CadQuery is a parametric scripting language for creating and traversing CAD models", description="CadQuery is a parametric scripting language for creating and traversing CAD models",
long_description=open("README.md").read(), long_description=open("README.md").read(),
packages=find_packages(exclude=("tests",)), packages=find_packages(exclude=("tests",)),
install_requires=["cadquery-ocp", "ezdxf", "multimethod", "nlopt", "nptyping", "typish", "casadi", "path"], python_requires=">=3.8,<3.11",
install_requires=["cadquery-ocp", "ezdxf", "multimethod", "nlopt", "nptyping>=2", "typish", "casadi", "path"],
extras_require = { extras_require = {
"dev": [ "dev": [
"docutils", "docutils",