diff options
author | jaseg <git@jaseg.de> | 2021-01-30 20:19:34 +0100 |
---|---|---|
committer | jaseg <git@jaseg.de> | 2021-01-30 20:19:34 +0100 |
commit | c5f8416b63139ec5b69c318e1be70ae54755e1e6 (patch) | |
tree | d1d683996f0d3bf4cb65bce44e4e03254aadb3a0 /setup.py | |
parent | 2133867c8a86337c6668f9cfff06e4de9bd0bcce (diff) | |
parent | 3f3b8487d41b3e0beb081ff049e2c815d7e6b269 (diff) | |
download | gerbolyze-c5f8416b63139ec5b69c318e1be70ae54755e1e6.tar.gz gerbolyze-c5f8416b63139ec5b69c318e1be70ae54755e1e6.tar.bz2 gerbolyze-c5f8416b63139ec5b69c318e1be70ae54755e1e6.zip |
Merge old gerbolyze history
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100755 index 0000000..3388853 --- /dev/null +++ b/setup.py @@ -0,0 +1,36 @@ +#!/usr/bin/env python3 + +from setuptools import setup + +def readme(): + with open('README.rst') as f: + return f.read() + +setup( + name = 'gerbolyze', + version = '0.1.10', + py_modules = ['gerbolyze'], + scripts = ['gerbolyze'], + description = ('A high-resolution image-to-PCB converter. Gerbolyze reads and vectorizes black-and-white raster ' + 'images, then plots the vectorized image into an existing gerber file while avoiding existing features such as ' + 'text or holes.'), + long_description=readme(), + long_description_content_type='text/x-rst', + url = 'https://github.com/jaseg/gerbolyze', + author = 'jaseg', + author_email = 'github@jaseg.net', + install_requires = ['pcb-tools', 'tqdm', 'numpy', 'opencv-python'], + license = 'AGPLv3', + classifiers = [ + 'Development Status :: 5 - Production/Stable', + 'Environment :: Console', + 'Intended Audience :: Manufacturing', + 'Intended Audience :: Science/Research', + 'Intended Audience :: Religion', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)', + 'Natural Language :: English', + 'Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)', + 'Topic :: Utilities' + ] +) |