forked from OCA/oca-github-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (44 loc) · 1.29 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
import io
import os
from setuptools import find_packages, setup
here = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(here, "README.rst"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="oca-github-bot",
use_scm_version=True,
long_description=long_description,
author="Odoo Community Association (OCA)",
author_email="[email protected]",
url="https://github.com/OCA/oca-github-bot",
python_requires=">=3.6",
setup_requires=["setuptools_scm"],
packages=find_packages("src"),
package_dir={"": "src"},
install_requires=[
# aiohttp ang gitgethub for the webhook app
"aiohttp",
"gidgethub",
"appdirs",
# GitHub client
"github3.py>=1.3.0",
# celery and celery monitoring for the task queue
"flower",
"celery[redis]",
# Odoo
"odoorpc",
# Sentry
"raven",
# setuptools and twine to build, check and upload wheels
"setuptools",
"twine",
"wheel",
],
license="MIT",
classifiers=[
# Trove classifiers
# Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
],
)