-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
27 lines (25 loc) · 884 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from setuptools import setup, find_packages
setup_args = {
"name": "cadquery_massembly",
"version": "1.0.0",
"description": "A manual assembly system for cadquery based on mates",
"include_package_data": True,
"install_requires": [],
"packages": find_packages(),
"zip_safe": False,
"author": "Bernhard Walter",
"author_email": "b_walter@arcor.de",
"url": "https://github.com/bernhard-42/cadquery-massembly",
"keywords": ["cadquery"],
"classifiers": [
"Development Status :: 4 - Beta",
"Framework :: IPython",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Multimedia :: Graphics",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
}
setup(**setup_args)