-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
50 lines (41 loc) · 1.68 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
#!/usr/bin/env python
# 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/>.
# Written by Bram Cohen and Matt Chisholm
import sys
import os
from distutils.core import setup, Extension
import Anomos
import glob
if (os.name == 'nt'):
import py2exe
scripts = ["anondownloadgui.py", "anondownloadcurses.py", "anondownloadheadless.py",
"makeatorrentgui.py", "makeatorrent.py",
"anonlaunchmany.py", "anonlaunchmanycurses.py",
"anontrack.py", "anonreannounce.py", "anonrename.py", "showmetainfo.py"]
img_root, doc_root = Anomos.calc_unix_dirs()
data_files = [ (img_root , glob.glob('images/*png')+['images/anomos.ico',]),
(img_root+'/logo', glob.glob('images/logo/anomos_[0-9]*.png') ),
(doc_root , ['credits.txt', 'LICENSE.txt', 'README.txt', 'GeoIP.dat']),
]
setup(
name = "Anomos",
version = Anomos.version,
author = "Anomos Liberty Enhancements",
author_email = "[email protected]",
url = "http://anomos.info/",
license = "GPL",
scripts = scripts,
packages = ["Anomos"],
data_files = data_files,
)