Skip to content

Commit de64413

Browse files
author
sy-github-bot
committed
[ADD] setup.py
1 parent 18938e4 commit de64413

6 files changed

Lines changed: 30 additions & 0 deletions

File tree

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# addons listed in this file are ignored by
2+
# setuptools-odoo-make-default (one addon per line)

setup/README

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
To learn more about this directory, please visit
2+
https://pypi.python.org/pypi/setuptools-odoo

setup/_metapackage/VERSION.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
16.0.20241105.0

setup/_metapackage/setup.py

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
import setuptools
2+
3+
with open('VERSION.txt', 'r') as f:
4+
version = f.read().strip()
5+
6+
setuptools.setup(
7+
name="odoo-addons-sygel-technology-sy-account-analytic",
8+
description="Meta package for sygel-technology-sy-account-analytic Odoo addons",
9+
version=version,
10+
install_requires=[
11+
'odoo-addon-account_timesheet_time_type>=16.0dev,<16.1dev',
12+
],
13+
classifiers=[
14+
'Programming Language :: Python',
15+
'Framework :: Odoo',
16+
'Framework :: Odoo :: 16.0',
17+
]
18+
)
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../../account_timesheet_time_type
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import setuptools
2+
3+
setuptools.setup(
4+
setup_requires=['setuptools-odoo'],
5+
odoo_addon=True,
6+
)

0 commit comments

Comments
 (0)