-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
38 lines (36 loc) · 1019 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
# -*- coding: utf-8 -*-
"""
setup.py
:copyright: (c) 2015 by Fulfil.IO Inc.
:license: see LICENSE for details.
"""
from setuptools import setup
setup(
name='trytond_encrypted_field',
version='5.0.0.0',
description='Encrypted fields in tryton',
long_description=open('README.rst').read(),
author="Fulfil.IO Inc.",
author_email="support@fulfil.io",
url="https://www.fulfil.io",
package_dir={'trytond_encrypted_field': '.'},
packages=[
'trytond_encrypted_field',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Plugins',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Office/Business',
],
license='BSD',
install_requires=[
"trytond>=5.0,<5.1",
"cryptography",
],
zip_safe=False,
)