forked from mozilla/tls-canary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
76 lines (69 loc) · 2.41 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
# 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 = 'tlscanary'
PACKAGE_VERSION = '3.3.0a7'
INSTALL_REQUIRES = [
'coloredlogs',
'cryptography',
'hashfs',
'python-dateutil',
'worq'
]
SCHEDULER_REQUIRES = [
'matplotlib',
'schedule'
]
TESTS_REQUIRE = [
'coverage',
'pycodestyle',
'pytest',
'pytest-pycodestyle',
'pytest-runner'
]
DEV_REQUIRES = TESTS_REQUIRE + SCHEDULER_REQUIRES
setup(
name=PACKAGE_NAME,
version=PACKAGE_VERSION,
description='TLS/SSL Test Suite for Mozilla Firefox',
classifiers=[
'Environment :: Console',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows :: Windows 10',
'Operating System :: Microsoft :: Windows :: Windows 7',
'Operating System :: Microsoft :: Windows :: Windows 8',
'Operating System :: Microsoft :: Windows :: Windows 8.1',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Testing'
],
keywords=['mozilla', 'firefox', 'tls', 'regression-testing', 'testing'],
author='Christiane Ruetten',
author_email='[email protected]',
url='https://github.com/mozilla/tls-canary',
download_url='https://github.com/mozilla/tls-canary/archive/latest.tar.gz',
license='MPL2',
packages=find_packages(exclude=["tests"]),
include_package_data=True, # See MANIFEST.in
zip_safe=False,
install_requires=INSTALL_REQUIRES,
tests_require=TESTS_REQUIRE,
extras_require={
'dev': DEV_REQUIRES, # For `pip install -e .[dev]`
'scheduler': SCHEDULER_REQUIRES # For `pip install -e .[scheduler]`
},
entry_points={
'console_scripts': [
'tlscanary = tlscanary.main:main',
'tlscscheduler = tlscanary.scheduler.main:main'
]
}
)