-
Notifications
You must be signed in to change notification settings - Fork 47
/
setup.py
43 lines (41 loc) · 1.13 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
from setuptools import setup
from maltego_trx import VERSION
with open("README.md", "r") as readme_md:
long_description = readme_md.read()
setup(
name='maltego-trx',
python_requires='>=3.8.0',
version=VERSION,
description='Python library used to develop Maltego transforms',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/paterva/maltego-trx/',
author='Maltego Staff',
author_email='support@maltego.com',
license='MIT',
install_requires=[
'flask>=3.0.0',
'cryptography>=41.0.0',
'requests>=2.31.0'
],
packages=[
'maltego_trx',
'maltego_trx/template_dir',
'maltego_trx/template_dir/transforms',
],
package_data={
'maltego_trx/template_dir': [
'settings.csv',
'transforms.csv',
'docker-compose.yml',
'Dockerfile',
'requirements.txt',
]
},
entry_points={
'console_scripts': [
'maltego-trx = maltego_trx.commands:execute_from_command_line',
]
},
zip_safe=False
)