-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
53 lines (52 loc) · 1.53 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
from setuptools import find_packages, setup
setup(
name="odoo-technical-analysis",
version="0.1.8",
description="Odoo Technical Analysis",
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
url="https://github.com/royaurelien/ota-client",
author="Aurelien ROY",
author_email="roy.aurelien@gmail.com",
license="BSD 2-clause",
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
packages=find_packages(),
include_package_data=True,
install_requires=[
"click>=8.0.0",
"pylint-odoo>=8.0",
"pylint==2.15.5",
"odoo-analyse==1.3.0",
"requests",
"sh>=2.0.0",
"rich",
"black",
"pydantic",
"pydantic-settings",
"pandas",
"numpy",
"appdirs",
"jinja2",
],
python_requires=">=3.8",
extras_require={},
entry_points={
"console_scripts": [
"ota = ota.main:cli",
],
},
)