-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
43 lines (40 loc) · 1.14 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
from setuptools import setup, find_packages
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name='jirasync',
version="1.1",
description="Track and Sync github Issues, PR, PR_Reviews as Jira Tasks",
author="Omkar Khatavkar",
author_email="[email protected]",
url="https://github.com/omkarkhatavkar/jirasync",
install_requires=required,
dependency_links=[
'git+ssh://github.com/omkarkhatavkar/did/tarball/master#egg=did'
],
include_package_data=True,
zip_safe=False,
platforms="any",
packages=find_packages(
exclude=[
"tests",
"tests.*",
"docs",
"docs.*",
"build",
"build.*",
"img",
"img.*",
"scripts",
"scripts.*",
]
),
entry_points={"console_scripts": ["jirasync=jirasync.cli:cli"]},
license='MIT',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
],
)