summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: 60bcd1b6d09e251361b731249a20e684af604b48 (plain)
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env python

from distutils.core import setup
import libtoprammer.main as toprammer_main

setup(	name		= "toprammer",
	version		= toprammer_main.VERSION,
	description	= "TOP2049 Open Source programming suite",
	long_description = "Toprammer is an Opensource software for the TOP2049 universal programmer.",
	author		= "Michael Buesch",
	author_email	= "m@bues.ch",
	url		= "http://bues.ch/h/toprammer",
	packages	= [ "libtoprammer",
			    "libtoprammer/top2049",
			    "libtoprammer/chips",
			    "libtoprammer/chips/microchip8",
			    "libtoprammer/chips/microchip16", ],
	package_data	= { "libtoprammer" : [ "fpga/bin/*.bit",
					       "icons/*.png", ], },
	scripts		= [ "toprammer", "toprammer-gui", "toprammer-layout", ],
	keywords	= [ "universal programmer", "TOP", "TOP2049", "TOP2007",
			    "TOP3000", "TOP3100", "TOP853", ],
	classifiers	= [
		"Development Status :: 5 - Production/Stable",
		"Environment :: Console",
		"Environment :: X11 Applications",
		"Environment :: X11 Applications :: Qt",
		"Intended Audience :: Developers",
		"Intended Audience :: Education",
		"Intended Audience :: Information Technology",
		"Intended Audience :: Manufacturing",
		"Intended Audience :: Science/Research",
		"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
		"Operating System :: POSIX",
		"Operating System :: POSIX :: Linux",
		"Programming Language :: Python",
		"Programming Language :: Python :: 2.7",
		"Programming Language :: Python :: Implementation :: CPython",
		"Topic :: Education",
		"Topic :: Scientific/Engineering",
		"Topic :: Software Development",
		"Topic :: Software Development :: Embedded Systems",
		"Topic :: Software Development :: Testing",
	],
)
bues.ch cgit interface