-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
60 lines (59 loc) · 1.49 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
50
51
52
53
54
55
56
57
58
59
60
from setuptools import find_packages, setup
setup(
name="developers-chamber",
version="0.1.28",
description="A small plugin which help with development, deployment, git",
keywords="django, skripts, easy live, git, bitbucket, Jira",
author="Druids team",
author_email="[email protected]",
url="https://github.com/druids/django-project-info",
license="MIT",
package_dir={"developers_chamber": "developers_chamber"},
include_package_data=True,
packages=find_packages(),
install_requires=[
"click>=8.1",
"requests>=2.23.0",
"python-dotenv==0.14.0",
"python-hosts==0.4.6",
"coloredlogs==10.0",
"click-completion==0.5.2",
"toml>=0.10.2",
],
extras_require={
"slack": [
"slack-sdk==3.21.3",
],
"aws": [
"boto3<2",
],
"qa": [
"gitpython==3.1.30",
"isort==5.12.0",
"flake8>=7.0.0",
],
"bitbucket": [
"gitpython==3.1.30",
],
"gitlab": [
"gitpython==3.1.30",
],
"jira": [
"gitpython==3.1.30",
"jira==2.0.0",
"unidecode==1.1.1",
],
"toggle": [
"TogglPy==0.1.2",
],
"git": [
"gitpython==3.1.30",
],
},
entry_points={
"console_scripts": [
"pydev=developers_chamber.bin.pydev:cli",
]
},
zip_safe=False,
)