forked from hedyhli/starcli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (41 loc) · 1.19 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
""" setup """
import io
from setuptools import setup
with io.open("README.md", "rt", encoding="utf8") as f:
LONG_DESC = f.read()
VERSION = "2.17.1"
# This call to setup() does all the work
setup(
name="starcli",
version=VERSION,
description="Browse popular projects on github by star trends from your command line",
long_description=LONG_DESC,
long_description_content_type="text/markdown",
python_requires=">=3.6",
url="https://github.com/hedyhli/starcli",
author="Hedy Li",
author_email="[email protected]",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
packages=["starcli"],
include_package_data=True,
install_requires=[
"Click>=7.0",
"colorama>=0.4.3",
"gtrending>=0.3.0,<1.0.0",
"requests>=2.22.0",
"rich>=4.0.0,<11.0.0",
"xdg>=5.1.1,<6.0.0",
],
entry_points={
"console_scripts": [
"starcli=starcli.__main__:cli",
]
},
)