-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
77 lines (71 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
# You can obtain one at http://mozilla.org/MPL/2.0/.
from setuptools import setup, find_packages
PACKAGE_NAME = "webextaware"
PACKAGE_VERSION = "1.2.5"
INSTALL_REQUIRES = [
"coloredlogs",
"gevent",
"grequests",
"hashfs",
"ipython",
"json-cfg",
"requests",
"pynpm",
"python-magic",
"urllib3"
]
TESTS_REQUIRE = [
"coverage",
"mock",
"pytest",
"pytest-runner"
]
DEV_REQUIRES = [
"coverage",
"mock",
"nose",
"pycodestyle",
"pytest",
"pytest-runner",
"radon"
]
setup(
name=PACKAGE_NAME,
version=PACKAGE_VERSION,
description="Mozilla WebExtensions Security Analyzer",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Security",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
"Topic :: Utilities"
],
keywords=["mozilla", "firefox", "browser", "addons", "web extensions", "testing", "security"],
author="Christiane Ruetten",
author_email="[email protected]",
url="https://github.com/cr/webextaware",
download_url="https://github.com/cr/webextaware/archive/latest.tar.gz",
license="MPL2",
packages=find_packages(exclude=["tests"]),
include_package_data=True, # See MANIFEST.in
zip_safe=False,
use_2to3=False,
install_requires=INSTALL_REQUIRES,
tests_require=TESTS_REQUIRE,
extras_require={"dev": DEV_REQUIRES}, # For `pip install -e .[dev]`
entry_points={
"console_scripts": [
"webextaware = webextaware.main:main"
]
}
)