File: setup.py

package info (click to toggle)
quisk 4.2.50-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 17,908 kB
  • sloc: ansic: 74,628; python: 23,309; makefile: 1,270; sh: 2
file content (49 lines) | stat: -rwxr-xr-x 1,368 bytes parent folder | download | duplicates (4)
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
46
47
48
49
from distutils.core import setup, Extension
import sys

# Afedri hardware support added by Alex, Alex@gmail.com

if sys.platform == "win32":
  Modules = [
    Extension ('afedrinet.afedrinet_io',
      libraries = ['WS2_32'],
      sources = ['../import_quisk_api.c', '../is_key_down.c', 'afedrinet_io.c'],
      include_dirs = ['.', '..'],
    )
  ]
else:
  Modules = [
    Extension ('afedrinet.afedrinet_io',
      libraries = ['m'],
      sources = ['../import_quisk_api.c', '../is_key_down.c', 'afedrinet_io.c'],
      include_dirs = ['.', '..'],
    )
  ]

setup	(name = 'afedrinet_io',
	version = '0.1',
	description = 'Afedri',
	long_description = "Afedri.",
	author = 'Alex',
	author_email = 'Alex@gmail.com',
	#url = 'http://',
	download_url = 'http://james.ahlstrom.name/quisk/',
	packages = ['afedrinet.afedrinet_io'],
	package_dir =  {'afedrinet' : '.'},
	ext_modules = Modules,
	classifiers = [
		'Development Status :: 6 - Mature',
		'Environment :: X11 Applications',
		'Environment :: Win32 (MS Windows)',
		'Intended Audience :: End Users/Desktop',
		'License :: OSI Approved :: GNU General Public License (GPL)',
		'Natural Language :: English',
		'Operating System :: POSIX :: Linux',
		'Operating System :: Microsoft :: Windows',
		'Programming Language :: Python',
		'Programming Language :: C',
		'Topic :: Communications :: Ham Radio',
	],
)