-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
37 lines (34 loc) · 1.14 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
# SPDX-FileCopyrightText: 2016-2023 Siveo <[email protected]>uuuuuuu
# SPDX-License-Identifier: GPL-3.0-or-later
from setuptools import setup
import os
import sys
if sys.platform.startswith("linux"):
fileconf = os.path.join("/", "etc", "pulse")
elif sys.platform.startswith("win"):
fileconf = os.path.join(os.environ["ProgramFiles"], "Pulse", "etc")
elif sys.platform.startswith("darwin"):
fileconf = os.path.join("/", "Library", "Application Support", "Pulse", "etc")
setup(
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: GPL License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
],
keywords="pulse2",
name="pulse2",
version='5.2.0', # fmt: skip
debian_distro='stretch', # fmt: skip
description="pulse2",
url="https://www.siveo.net/",
packages=["pulse2"],
test_suite="",
package_data={},
entry_points={},
extras_require={},
install_requires=[],
)