-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (43 loc) · 1.13 KB
/
Copy pathsetup.py
File metadata and controls
45 lines (43 loc) · 1.13 KB
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
from setuptools import setup
setup(
name='gitoo',
use_scm_version=True,
setup_requires=['setuptools_scm>=8.0', 'pytest_runner'],
description='Odoo third party addons installer.',
author='numigi',
author_email='contact@numigi.com',
url='https://github.com/numigi/gitoo',
packages=["gitoo"],
package_dir={
"gitoo": "./src/gitoo",
},
entry_points='''
[console_scripts]
gitoo=gitoo.cli:entry_point
''',
install_requires=[
'gitpython',
'click',
'click-didyoumean',
'crayons',
'click-help-colors',
'pyyaml',
'pystache',
],
tests_require=[
'pytest',
'pytest-cov',
'pytest-random-order',
'mock',
],
include_package_data=True,
license='MIT',
classifiers=[
# Trove classifiers
# Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: Implementation :: CPython',
],
)