-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
38 lines (31 loc) · 1.02 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
#!/usr/bin/env python
import sys
from setuptools import setup, find_packages
if sys.version_info.major == 3 and sys.version_info.minor < 3:
print("Unfortunately, your python version is not supported!\n Please upgrade at least to python 3.3!")
sys.exit(1)
if sys.platform == 'darwin' or sys.platform == 'win32':
print("Unfortunately, we do not support your platform %s" % sys.platform)
sys.exit(1)
install_requires = [
'androguard==4.1.1',
'cryptography==43.0.1',
'dhash==1.4',
'jellyfish==0.5.6',
'Pillow==10.3.0',
'requests>=2.26,<2.33',
'six==1.15.0',
'traitlets==4.3.2'
]
setup(
name='exodus_core',
version='1.3.13',
description='Core functionality of εxodus',
author='Exodus Privacy',
author_email='[email protected]',
url='https://github.com/Exodus-Privacy/exodus-core',
packages=find_packages(exclude=["*.tests", "*.tests.*", "test*", "tests"]),
install_requires=install_requires,
include_package_data=True,
zip_safe=False,
)