-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (47 loc) · 1.25 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
#-*- coding:utf-8 -*-
"""
Setup for baguette cli package.
"""
from setuptools import find_packages, setup
setup(
name='baguette-client',
version='0.12',
description='Baguette Command Line Interface',
long_description=open('README.rst').read(),
keywords=['cli', 'baguette'],
url='https://github.com/baguette-io/baguette-client/',
author_email='pydavid@baguette.io',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
],
packages=find_packages(),
install_requires=[
'requests==2.18.4',
'click==6.6',
'GitPython==2.0.8',
],
entry_points={
'console_scripts':[
'baguette=baguette.entrypoints:main',
],
},
extras_require={
'testing': [
'mock==2.0.0',
'pytest==3.3.2',
'pytest-cov==2.3.0',
'pylint==1.6.1',
],
'doc': [
'Sphinx==1.4.4',
],
},
package_data={
'baguette':['baguette.ini'],
},
)