gerbolyze/setup.py

37 wiersze
1.3 KiB
Python
Czysty Zwykły widok Historia

2018-07-08 10:35:32 +00:00
#!/usr/bin/env python3
2018-07-08 11:03:17 +00:00
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
2018-07-08 10:35:32 +00:00
setup(
name = 'gerbolyze',
2019-03-25 17:15:32 +00:00
version = '0.1.10',
2018-07-08 10:35:32 +00:00
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.'),
2018-07-08 11:03:17 +00:00
long_description=readme(),
long_description_content_type='text/x-rst',
2018-07-08 10:35:32 +00:00
url = 'https://github.com/jaseg/gerbolyze',
author = 'jaseg',
author_email = 'github@jaseg.net',
install_requires = ['pcb-tools', 'tqdm', 'numpy', 'opencv-python'],
2018-07-08 10:35:32 +00:00
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'
]
)