-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
46 lines (40 loc) · 1.61 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
44
45
46
from setuptools import find_namespace_packages, setup
def _requires_from_file(filename):
with open(filename, encoding="utf-8") as f:
return f.read().splitlines()
with open("README.md", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="reviews",
packages=find_namespace_packages(include=["*"]),
version="0.6.0",
license="MIT",
description=("A terminal UI dashboard to monitor requests for code " "review across Github repositories."),
author="Kyle Harrison",
author_email="[email protected]",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/apoclyps/reviews",
download_url="https://pypi.org/project/reviews/",
project_urls={
"Funding": "https://ko-fi.com/apoclyps",
"Say Thanks!": "https://twitter.com/apoclyps",
"Source": "https://github.com/apoclyps/reviews",
"Tracker": "https://github.com/apoclyps/reviews/issues",
},
keywords=["Reviews", "pull request review"],
install_requires=_requires_from_file("requirements.txt"),
entry_points={"console_scripts": ["reviews = reviews.cli.main:main"]},
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Unix",
"Programming Language :: Python :: 3.9",
"Topic :: Terminals",
],
)