-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathsetup.py
35 lines (31 loc) · 1.01 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import os.path
from setuptools import setup, find_packages
"""Setup script for jiraffe"""
pwd = os.path.abspath(os.path.dirname(__file__))
# README file
with open(os.path.join(pwd, "README.md")) as f:
README = f.read()
f.close()
# call to setup()
setup(
name="jiraffe",
version="2.0.6",
description="One stop place for exploiting all Jira instances in your proximity.",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/0x48piraj/jiraffe",
author="Piyush Raj <0x48piraj>",
author_email="[email protected]",
license="BSD-3",
classifiers=[
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
packages=find_packages(),
include_package_data=True,
install_requires=["requests", "beautifulsoup4", "packaging"],
entry_points={"console_scripts": ["jiraffe=jiraffe.__main__:main"]},
)