-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (33 loc) · 1009 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup
import sys
import platform
if (platform.system() != "Windows") or (platform.system() != "Darwin"):
my_data_files = [
(sys.prefix + "/share/pixmaps", ["icons/scalable/onionlauncher.svg"]),
(sys.prefix + "/share/applications", ["data/onionlauncher.desktop"]),
]
else:
my_data_files = []
setup(name="OnionLauncher",
version="0.0.2",
description="Launcher for Tor",
license = "BSD",
author="Neel Chauhan",
author_email="[email protected]",
url="https://www.github.com/neelchauhan/OnionLauncher/",
packages=["OnionLauncher"],
entry_points={'gui_scripts': ['OnionLauncher=OnionLauncher.main:main_loop']},
package_data={"OnionLauncher": ["ui_files/*"]},
install_requires=[
"stem",
],
data_files=my_data_files,
classifiers=[
"Environment :: X11 Applications :: Qt",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
],
)