File: setup.py

package info (click to toggle)
turbocase 1.8.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 856 kB
  • sloc: python: 1,708; sh: 11; makefile: 2
file content (17 lines) | stat: -rw-r--r-- 601 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from setuptools import setup

setup(name='turbocase',
      version='1.8.0',
      description='Generate an OpenSCAD case template from a KiCAD PCB',
      url='https://turbocase.org',
      author='Martijn Braam',
      author_email='martijn@brixit.nl',
      packages=['turbocase', 'turbocase.parts'],
      install_requires=['sexpdata'],
      project_urls={
          'Source': 'https://git.sr.ht/~martijnbraam/turbocase',
          'Tracker': 'https://todo.sr.ht/~martijnbraam/turbocase',
      },
      entry_points={
          'console_scripts': ['turbocase=turbocase.__main__:main'],
      })