-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
65 lines (52 loc) · 1.54 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
61
62
63
64
#from distutils.core import setup
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(
# Application name:
name="JiraIssueSelector",
# Version number (initial):
version="1.3.3",
# Application author details:
author="Derin Yarsuvat",
author_email="[email protected]",
license='GPLv3',
# Packages
packages=['jira_issue_selector', 'jira_issue_selector.ui'],
package_data={
'jira_issue_selector': ['data/*']
},
# Include additional files into the package
include_package_data=True,
# Details
url="https://github.com/berulacks/git-jira-issue-selector",
download_url="https://github.com/Berulacks/git-jira-issue-selector/releases/download/v1.3.3/JiraIssueSelector-1.3.3-py3-none-any.whl",
#
# license="LICENSE.txt",
description="Allows you to quickly select and prepend JIRA issues to git commit messages",
long_description=readme(),
long_description_content_type='text/markdown',
scripts=[
'bin/git-jira'
],
# Dependent packages (distributions)
install_requires=[
'blessed>=1.15',
'certifi>=2019.9.11',
'chardet==3.0.4',
'fuzzywuzzy>=0.16.0',
'gitdb2==2.0.3',
'GitPython==3.1.32',
'idna>=2.8',
'python-Levenshtein==0.12.0',
'PyYAML>=4.2b4',
'requests>=2.21.0',
'six>=1.13.0',
'smmap2==2.0.3',
'urllib3==1.26.5',
'wcwidth==0.1.7'
],
python_requires='>=3',
zip_safe=False
)