-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
49 lines (47 loc) · 1.13 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
from setuptools import setup, find_packages
api = [
'boto3'
, 'flask >= 0.10.1'
, 'uwsgi'
, 'Flask-HTTPAuth'
, 'dscommons'
]
tools = [
'awscli'
, 'bumpversion'
, 'pip2pi'
, 'tox'
, 'pip-tools'
, 'wheel'
]
setup(
name='ihrpi',
version='1.2.0',
author='Sam Garrett',
author_email='[email protected]',
description='iHeart private packaging tools & index.',
scripts=[
'bin/ihrpi-build',
'bin/ihrpi-configure-travis',
'bin/ihrpi-gen-requirements',
'bin/ihrpi-publish',
'bin/ihrpi-release',
'bin/ihrpi-setup-env',
'bin/ihrpi-tox-install',
'bin/ihrpi-tox-run',
],
entry_points={
'console_scripts': ['ihrpi-gcv=ihrpi.tools:gcv_main'],
},
install_requires=[
# See https://github.com/getsentry/responses/blob/df920c09fcdb97f260dddba631ad5a1d9042188a/CHANGES#L45
# We need the `_is_string` method
'responses<0.18.0',
'urllib3>=1.21.1,<1.27',
],
extras_require={
'api': api
, 'tools': tools
},
packages=find_packages(exclude=['tests'])
)