-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
39 lines (37 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
39
# -*- coding: utf-8 -*-
"""
setup
"""
from setuptools import setup
setup(
name='trytond_sentry',
version='5.0.0.1',
description='Sentry Client for Tryton',
long_description=open('README.rst').read(),
author="Fulfil.IO Inc., Openlabs Technologies & Consulting (P) Limited",
author_email="[email protected]",
url="https://github.com/fulfilio/trytond-sentry",
package_dir={'trytond_sentry': '.'},
packages=[
'trytond_sentry',
],
scripts=[
'bin/trytond_sentry',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Plugins',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Office/Business',
],
license='BSD',
install_requires=[
"trytond>=5.0,<5.1",
"sentry-sdk",
],
zip_safe=False,
)