-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
46 lines (39 loc) · 1.6 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import os
from setuptools import setup, find_packages # type: ignore
from qsketchmetric import __version__
VERSION = __version__
DESCRIPTION = 'Python 2D parametric DXF rendering engine.'
# Get the directory containing this file.
here = os.path.abspath(os.path.dirname(__file__))
def readme():
with open(os.path.join(here, 'README.md')) as f:
return f.read()
setup(
name="qsketchmetric",
version=VERSION,
description=DESCRIPTION,
long_description=readme(),
long_description_content_type="text/markdown",
url="https://github.com/MadScrewdriver/qsketchmetric",
project_urls={
"Documentation": "https://qsketchmetric.readthedocs.io/",
},
author="Franciszek Łajszczak",
author_email="franciszek@lajszczak.dev",
license='MIT',
packages=find_packages(),
install_requires=["ezdxf", "py-expression-eval", "pyparsing", "typing_extensions"],
keywords='CAD, QCAD, 2D, parametric, drawing, renderer, python renderer, python CAD, python 2d CAD, p'
'python 2d drawing, python parametric drawing, python parametric CAD, python QCAD, QCAD python, '
'parametric QCAD python, parametric QCAD, QCAD parametric, QCAD python parametric, QCAD python 2d,',
python_requires=">=3.9",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
]
)