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']),
# ...
]
)
|