-
-
Notifications
You must be signed in to change notification settings - Fork 51
/
setup.py
47 lines (42 loc) · 1.26 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
47
""" setup """
import io
from setuptools import setup
with io.open("README.md", "rt", encoding="utf8") as f:
LONG_DESC = f.read()
VERSION = "2.18.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",
author_email="hedy@tilde.cafe",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
packages=["starcli"],
include_package_data=True,
install_requires=[
"Click>=7.0,<8.0",
"gtrending>=0.3.0,<1.0.0",
"requests>=2.22.0,<3.0.0",
"rich>=4.0.0,<14.0.0",
"xdg>=5.1.1,<6.0.0",
],
entry_points={
"console_scripts": [
"starcli=starcli.__main__:cli",
]
},
)