summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: def9ce594b602a2e1e37391fd1ff848c54589489 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env python3

from distutils.core import setup
from awlsim.main import VERSION_MAJOR, VERSION_MINOR

setup(	name		= "awlsim",
	version		= "%d.%d" % (VERSION_MAJOR, VERSION_MINOR),
	description	= "Step 7 AWL/STL/PLC simulator",
	author		= "Michael Buesch",
	author_email	= "m@bues.ch",
	url		= "http://bues.ch/cms/hacking/awlsim.html",
	packages	= [ "awlsim", ],
	scripts		= [ "awlsimcli", "awlsimgui", "linuxcnc/awlsim-linuxcnc-hal" ],
)
bues.ch cgit interface