-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (32 loc) · 1.38 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
__author__ = 'Viet Pham'
__copyright__ = 'Viet Pham'
__date__ = '04.12.2018'
__version__ = '0.2.0'
__status__ = 'beta'
setup(
name='pydoo',
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
version=__version__,
description='High level library for Odoo XMLRPC API',
author=__author__,
author_email='[email protected]',
url='https://github.com/julivico/pydoo',
download_url='https://github.com/julivico/pydoo/archive/master.zip',
keywords='python odoo xmlrpc',
classifiers=['Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy'],
)