Add setup.py, bump version to 0.1.0

old-master
jaseg 2018-07-08 12:35:32 +02:00
rodzic 07c5e034bc
commit 66752c94b3
1 zmienionych plików z 29 dodań i 0 usunięć

29
setup.py 100755
Wyświetl plik

@ -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'
]
)