aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorFranklin Wei <franklin@rockbox.org>2019-12-25 22:49:38 -0500
committerFranklin Wei <franklin@rockbox.org>2019-12-25 22:50:10 -0500
commitddf979cb72c86974e4f4ec77cfaca0f6cb8fc1c1 (patch)
tree17c9f28ebe34c39a1235811a2f8ab75236d2139d /setup.py
parent04c48439d21f9e5293ae468e2900a7ef6e7610c7 (diff)
downloadrastercarve-ddf979cb72c86974e4f4ec77cfaca0f6cb8fc1c1.zip
rastercarve-ddf979cb72c86974e4f4ec77cfaca0f6cb8fc1c1.tar.gz
rastercarve-ddf979cb72c86974e4f4ec77cfaca0f6cb8fc1c1.tar.bz2
rastercarve-ddf979cb72c86974e4f4ec77cfaca0f6cb8fc1c1.tar.xz
Add classifiers and clean up.
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 3169fb6..bb9025c 100755
--- a/setup.py
+++ b/setup.py
@@ -10,15 +10,19 @@ setuptools.setup(
version=__version__,
author="Franklin Wei",
author_email="franklin@rockbox.org",
- description="Generate G-code to engrave raster images.",
+ description="Generate G-code to engrave raster images",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/built1n/rastercarve",
packages=setuptools.find_packages(),
classifiers=[
- "Programming Language :: Python :: 3",
+ "Development Status :: 5 - Production/Stable",
+ "Environment :: Console",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Operating System :: OS Independent",
+ "Programming Language :: Python :: 3",
+ "Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
+ "Topic :: Utilities",
],
python_requires='>=3.6',
install_requires=["opencv-python", "numpy", "tqdm", "argparse"],