Skip to content
This repository was archived by the owner on Nov 28, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +0,0 @@
pygithub
daiquiri
20 changes: 12 additions & 8 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
[metadata]
name = git-pull-request
home-page = https://github.com/jd/git-pull-request
summary = Command line tool to send GitHub pull-request
home-page = https://github.com/Mergifyio/git-pull-request
summary = Command line tool to send GitHub pull requests
description-file = README.rst
author = Julien Danjou
author-email = julien@danjou.info
author-email = jd@mergify.io
classifier =
Intended Audience :: Developers
Intended Audience :: Information Technology
License :: OSI Approved :: Apache Software License
Operating System :: POSIX
Expand All @@ -15,15 +16,18 @@ classifier =
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7

[files]
packages =
git_pull_request
[options]
packages = find:
install_requires =
pygithub
daiquiri

[extras]

[options.extras_require]
test =
fixtures

[entry_points]
[options.entry_points]
console_scripts =
git-pull-request = git_pull_request:main

Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
import setuptools

setuptools.setup(
setup_requires=['pbr'],
pbr=True)
setup_requires=['setuptools_scm'],
use_scm_version=True,
)