forked from CiscoTestAutomation/pyats.contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
103 lines (83 loc) · 3.05 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
#! /usr/bin/env python
'''Setup file for pyats.contrib
See:
https://packaging.python.org/en/latest/distributing.html
'''
from setuptools import setup, find_packages
from os import listdir
from os.path import isfile, join
def read(path):
with open(path) as f:
return f.read()
def discover_creators():
creators = filter(lambda creator: creator not in [
'__init__.py',
'creator.py',
'README.md',
'tests'
], listdir('src/pyats/contrib/creators'))
creators = [creator.replace('.py', '') for creator in creators]
return ['{source} = pyats.contrib.creators.{source}:{source_title}'
.format(source=source, source_title=source.title()) \
for source in creators]
# launch setup
setup(
name = 'pyats.contrib',
version = '20.4.2',
# descriptions
description = 'Open source package for pyATS framework extensions.',
long_description = read('README.md'),
long_description_content_type="text/markdown",
# the project's main homepage.
url = 'https://developer.cisco.com/pyats/',
# author details
author = 'Cisco Systems Inc.',
author_email = 'pyats-support-ext@cisco.com',
# project licensing
license = 'Apache 2.0',
classifiers = [
'Development Status :: 6 - Mature',
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Telecommunications Industry',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development :: Testing',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
# uses namespace package
namespace_packages = ['pyats'],
# project packages
packages = find_packages(where = 'src'),
# project directory
package_dir = {
'': 'src',
},
# additional package data files that goes into the package itself
package_data = {},
# project keywords
keywords = 'genie pyats test automation open source contrib',
entry_points={
'pyats.topology.loader': discover_creators()
},
# package dependencies
install_requires=[
"ansible", "requests", "xlrd", "xlrd", "xlwt", "xlsxwriter"
],
# external modules
ext_modules = [],
# non zip-safe (never tested it)
zip_safe = False,
)