-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (35 loc) · 1.07 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
from setuptools import setup, find_packages
import codecs
import os
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh:
long_description = "\n" + fh.read()
VERSION = "0.0.2"
DESCRIPTION = "Simple path editing"
# Setting up
setup(
name="pathprocessing",
version=VERSION,
author="wrangelvid (David von Wrangel)",
author_email="<[email protected]>",
description=DESCRIPTION,
long_description_content_type="text/markdown",
long_description=long_description,
packages=find_packages(include=["pathprocessing"]),
install_requires=[
"numpy >= 1.21.5",
"svgpathtools >= 1.5.1",
"rdp >= 0.8",
"matplotlib >= 3.5.1",
"pycairo >= 1.20.1",
"qrcode >= 7.3.1",
"scikit-learn >= 1.2.1"
],
classifiers=[
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
license="MIT",
)