-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (26 loc) · 949 Bytes
/
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
from setuptools import find_packages, setup
from gitmine.version import __version__
long_descr = open("README.md").read()
with open("requirements.txt", encoding="utf-8") as f:
all_reqs = f.read().split("\n")
install_requires = [
x.strip()
for x in all_reqs
if ("git+" not in x) and (not x.startswith("#")) and (not x.startswith("-"))
]
setup(
name="gitmine",
packages=find_packages(),
entry_points={"console_scripts": ["gitmine = gitmine.gitmine:gitmine"]},
install_requires=install_requires,
include_package_data=True,
python_requires=">=3.6",
version=__version__,
license="MIT",
url="https://github.com/joecummings/gitmine",
description="Simple command-line app for querying assigned Issues and PRs from Github.",
long_description=long_descr,
long_description_content_type="text/markdown",
author="Joe Cummings, Alexis Baudron",
author_email="[email protected]",
)