forked from druids/developers-chamber
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (35 loc) · 1.05 KB
/
setup.py
File metadata and controls
36 lines (35 loc) · 1.05 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
from setuptools import find_packages, setup
setup(
name='developers-chamber',
version='0.0.70',
description='A small plugin which help with development, deployment, git',
keywords='django, skripts, easy live, git, bitbucket, Jira',
author='Druids team',
author_email='matllubos@gmail.com',
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=[
'oauthlib==3.1.0',
'gitpython==3.1.30',
'click==7.0',
'requests>=2.23.0',
'python-dotenv==0.14.0',
'boto3<2',
'python-hosts==0.4.6',
'isort==5.12.0',
'coloredlogs==10.0',
'click-completion==0.5.2',
'jira==2.0.0',
'unidecode==1.1.1',
'TogglPy==0.1.2',
'flake8==4.0.1',
'slack-sdk==3.21.3',
],
entry_points={'console_scripts': [
'pydev=developers_chamber.bin.pydev:cli',
]},
zip_safe=False,
)