-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
executable file
·31 lines (27 loc) · 1.22 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(name = 'Chiplotle',
version = '0.4.2',
description = 'Chiplotle is an HPGL Python API.',
long_description = 'Chiplotle is an HPGL Python API.',
author = 'Víctor Adán and Douglas Repetto',
author_email = '[email protected]',
url = 'http://music.columbia.edu/cmc/chiplotle',
keywords = 'vector graphics hpgl plotter plot pen',
license = 'GPL',
include_package_data = True,
packages = ['chiplotle'],
install_requires = ['pyserial<=3', 'numpy<=2'],
entry_points = {'console_scripts':
['chiplotle = chiplotle.core.cfg._run_chiplotle:_run_chiplotle',]},
scripts = [
'chiplotle/scripts/envelope.py',
'chiplotle/scripts/find_hpgl_file_dimensions.py',
'chiplotle/scripts/plot_hpgl_file_max_size.py',
'chiplotle/scripts/plot_hpgl_file.py',
'chiplotle/scripts/plot_hpgl_file_virtual.py',
'chiplotle/scripts/typewriter.py',
'chiplotle/scripts/view_hpgl_file.py',
],
)