aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjaseg <git@jaseg.net>2018-07-08 12:35:32 +0200
committerjaseg <git@jaseg.net>2018-07-08 12:37:51 +0200
commit66752c94b38400c7a7b4c4d3494204f808c459f4 (patch)
tree745a4a6adaa228d4c8b6e28e7a4a56766ced6b71
parent07c5e034bcb222536965dbe65c4f59235ed584e5 (diff)
downloadgerbolyze-66752c94b38400c7a7b4c4d3494204f808c459f4.tar.gz
gerbolyze-66752c94b38400c7a7b4c4d3494204f808c459f4.tar.bz2
gerbolyze-66752c94b38400c7a7b4c4d3494204f808c459f4.zip
Add setup.py, bump version to 0.1.0
-rwxr-xr-xsetup.py29
1 files changed, 29 insertions, 0 deletions
diff --git a/setup.py b/setup.py
new file mode 100755
index 0000000..27c7d26
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,29 @@
+#!/usr/bin/env python3
+
+from setuptools import setup, find_packages
+setup(
+ name = 'gerbolyze',
+ version = '0.1.0',
+ 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.'),
+ url = 'https://github.com/jaseg/gerbolyze',
+ author = 'jaseg',
+ author_email = 'github@jaseg.net',
+ install_requires = ['pcb-tools'],
+ 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'
+ ]
+)