-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (32 loc) · 1.02 KB
/
setup.py
File metadata and controls
38 lines (32 loc) · 1.02 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
37
38
# -*- coding: utf-8 -*-
import os
from codecs import open
from setuptools import setup, find_packages
VERSION = "0.2"
DESCRIPTION = "A git extension which provides commands for working according Git-Flow easily & safely in your repository."
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, "README.md"), "r") as f:
readme = f.read()
with open(os.path.join(here, "requirements.txt"), "r") as f:
requires = f.read()
setup(
name="github-flow",
version=VERSION,
description=DESCRIPTION,
long_description=readme,
author="ShakedBraimok (Shaked Braimok Yosef)",
author_email="shaked.braimok.yosef@gmail.com",
url="https://github.com/ShakedBraimok/github-flow",
long_description_content_type='text/markdown',
packages=find_packages(),
include_package_data=True,
install_requires=requires,
license="GPL",
zip_safe=False,
entry_points={
"console_scripts": [
"git-flow=src.github_flow:main",
],
"gui_scripts": [],
}
)