diff options
| author | Franklin Wei <franklin@rockbox.org> | 2019-12-25 22:49:38 -0500 |
|---|---|---|
| committer | Franklin Wei <franklin@rockbox.org> | 2019-12-25 22:50:10 -0500 |
| commit | ddf979cb72c86974e4f4ec77cfaca0f6cb8fc1c1 (patch) | |
| tree | 17c9f28ebe34c39a1235811a2f8ab75236d2139d /setup.py | |
| parent | 04c48439d21f9e5293ae468e2900a7ef6e7610c7 (diff) | |
| download | rastercarve-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-x | setup.py | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -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"], |