-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
42 lines (36 loc) · 1.16 KB
/
setup.py
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from distutils.core import setup
setup(name='cpcdemotools',
version='0.2',
description='Python tools for Amstrad CPC demoscene projects',
author='Romain Giot',
author_email='[email protected]',
url='http://www.python.org/sigs/distutils-sig/',
packages=[
'cpcdemotools',
'cpcdemotools.source_checker',
'cpcdemotools.sound',
'cpcdemotools.curves',
'cpcdemotools.graph',
'cpcdemotools.screen',
],
scripts=[
'cpcdemotools/source_checker/z80_syntax_checker.py',
'cpcdemotools/source_checker/vasm_symbols.py',
'cpcdemotools/sound/ymreader.py',
'cpcdemotools/curves/curves256.py',
# 'cpcdemotools/graph/extract_pal.py',
'cpcdemotools/crtc/crtc_transitions_helper.py',
'cpcdemotools/graph/memorydraw.py'
]
)
# metadata
__author__ = 'Romain Giot'
__copyright__ = 'Copyright 2012, Romain Giot'
__credits__ = ['Romain Giot']
__licence__ = 'GPL'
__version__ = '0.1'
__maintainer__ = 'Romain Giot'
__email__ = '[email protected]'
__status__ = 'Prototype'