forked from cartography-cncf/cartography
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
67 lines (64 loc) · 1.89 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
from setuptools import find_packages
from setuptools import setup
__version__ = '0.28.0'
setup(
name='cartography',
version=__version__,
description='Explore assets and their relationships across your technical infrastructure.',
url='https://www.github.com/lyft/cartography',
maintainer='Lyft',
maintainer_email='[email protected]',
license='apache2',
packages=find_packages(exclude=['tests*']),
package_data={
'cartography.data': [
'*.cypher',
'*.yaml',
],
'cartography.data.jobs.analysis': [
'*.json',
],
'cartography.data.jobs.cleanup': [
'*.json',
],
},
dependency_links=[],
install_requires=[
"boto3>=1.7.0",
"botocore>=1.12.0",
"dnspython>=1.15.0",
"neo4j>=1.7.0,<4.0.0",
"neobolt>=1.7.0,<4.0.0",
"policyuniverse>=1.1.0.0",
"google-api-python-client>=1.7.8",
"oauth2client>=4.1.3",
"marshmallow>=3.0.0rc7",
"okta<1.0.0",
"pyyaml>=5.3.1",
"requests>=2.22.0",
"statsd",
],
extras_require={
':python_version<"3.7"': [
"importlib-resources",
],
},
entry_points={
'console_scripts': [
'cartography = cartography.cli:main',
'cartography-detectdrift = cartography.driftdetect.cli:main',
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Security',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)