[go: up one dir, main page]

File: setup.py

package info (click to toggle)
freevial 1.3-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 25,580 kB
  • ctags: 243
  • sloc: xml: 7,725; python: 2,576; sh: 21; makefile: 8
file content (36 lines) | stat: -rw-r--r-- 951 bytes parent folder | download | duplicates (3)
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
#! /usr/bin/env python

from distutils.core import setup

import freevial.freevial AS src
version = src.VERSION

setup(
	# Basic Information
	name = 'Freevial',
	version = version,
	description = 'Trivia platform for community events',
	author = 'The Freevial Team',
	author_email = 'freevial-dev@eurion.net',
	url = 'https://launchpad.net/freevial',
	download_url = 'https://launchpad.net/freevial/+download',
	
	# Classifiers
	classifiers = [
		'License :: OSI-Approved :: GNU General Public License (GPL)',
		'Intended Audience :: End USers/Desktop',
		'Development Status :: 5 - Production/Stable',
		'Topic :: Games/Entertainment',
		'Programming Language :: Python',
		'Database Environment :: Database API :: XML-based'
		]
	
	# File installation
	# TODO: The executable should be installed into /usr/games, not /usr/bin
	scripts = ['freevial'],
	packages = ['src', 'src.common'],
	data_files = [
		('games/freevial', ['data']),
		# ...
		]
	)