forked from gisce/destral
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (38 loc) · 842 Bytes
/
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
import sys
from setuptools import setup, find_packages
requirements = [
'requests',
'osconf',
'expects',
'six',
'click',
'coverage',
'lazy-object-proxy<1.7.0',
'pylint<=2.17.7',
'python-dateutil',
'babel>=2.4.0',
'junit_xml',
'psycopg2',
'mock',
'xlrd==1.2.0',
]
if sys.version_info.major < 3:
requirements.append('mamba<0.11.0')
else:
requirements.append('mamba>=0.11.0')
setup(
name='destral',
version='1.23.0',
packages=find_packages(),
url='https://github.com/gisce/destral',
install_requires=requirements,
license='GNU GPLv3',
author='GISCE-TI, S.L.',
author_email='[email protected]',
entry_points={
'console_scripts': [
'destral = destral.cli:destral'
]
},
description='OpenERP testing framework'
)