-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
executable file
·51 lines (44 loc) · 2.09 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
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env python3
# rFactorTools
# Copyright (C) 2014 Ingo Ruhnke <[email protected]>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from setuptools import setup, find_packages
from setuptools.extension import Extension
setup(name='rfactortools',
version='0.4.0',
entry_points = {
'gui_scripts': [
"rfactortools-gui = rfactortools.programs.rfactortools_gui:main",
],
'console_scripts': [
"rft-aiwtool = rfactortools.programs.aiwtool:main",
"rft-dirtool = rfactortools.programs.dirtool:main",
"rft-gentool = rfactortools.programs.gentool:main",
"rft-gmttool = rfactortools.programs.gmttool:main",
"rft-gtr2-to-gsc2013 = rfactortools.programs.gtr2_to_gsc2013:main",
"rft-imgtool = rfactortools.programs.imgtool:main",
"rft-maspack = rfactortools.programs.maspack:main",
"rft-masunpack = rfactortools.programs.masunpack:main",
"rft-race07-ids = rfactortools.programs.race07_ids:main",
"rft-rfactor-to-gsc2013 = rfactortools.programs.rfactor_to_gsc2013:main",
"rft-rfactorcrypt = rfactortools.programs.rfactorcrypt:main",
"rft-sfxtool = rfactortools.programs.sfxtool:main",
"rft-vehtool = rfactortools.programs.vehtool:main",
],
},
packages=find_packages(),
ext_modules=[Extension('rfactortools._crypt', ['rfactortools_crypt.cpp'])],
requires=['PIL', 'pathlib'])
# EOF #