-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (48 loc) · 2 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
52
53
import setuptools
__version__ = "3.0.0"
with open("README.md", encoding="utf-8") as readme_file:
full_description = readme_file.read()
readme_file.close()
setuptools.setup(
name="privacyfighter",
version=__version__,
description="Privacy-Fighter: A Browser Setup For Increased Privacy And Security",
license="GNU General Public License v3 or later (GPLv3+)",
author="JGill",
zip_safe=False,
author_email="joty@mygnu.org",
url="https://github.com/jotyGill/privacy-fighter",
keywords=["privacy", "firefox", "browser"],
python_requires=">=3.5",
install_requires=["requests", "psutil"],
platforms=["GNU/Linux", "Ubuntu", "Debian", "Kali", "CentOS", "Arch", "Fedora"],
packages=setuptools.find_packages(),
entry_points={"console_scripts": ["pf = privacyfighter.pf:main", "privacyfighter = privacyfighter.pf:main"]},
include_package_data=True,
long_description=full_description,
long_description_content_type="text/markdown",
classifiers=[
"Intended Audience :: End Users/Desktop",
"Intended Audience :: System Administrators",
"Intended Audience :: Information Technology",
"Topic :: Utilities",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft",
"Operating System :: MacOS",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Internet",
"Topic :: Internet :: WWW/HTTP :: Browsers",
"Topic :: Security",
],
project_urls={
"Why Privacy Matters": "https://github.com/jotyGill/privacy",
"github": "https://github.com/jotyGill/privacy-fighter",
"gitlab": "https://gitlab.com/JGill/privacy-fighter",
},
)