This repository was archived by the owner on Sep 22, 2025. It is now read-only.
forked from taranjeet/github-trending-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (45 loc) · 1.74 KB
/
setup.py
File metadata and controls
47 lines (45 loc) · 1.74 KB
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
#!/usr/bin/env python
from setuptools import setup
import sys
setup(
name="github-trending",
version="1.0.6",
description="Trending repositories and developers on Github",
long_description="""This python packages lists the trending repositories
and developers on Github on the console. It is available as a command line
utility.""",
author="Samarth Hegde",
license="MIT",
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stablegit
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Natural Language :: English",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.0",
"Programming Language :: Python :: 3.1",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
],
keywords="github trending repo developers trending-repo",
author_email="reachtotj@gmail.com",
url="https://github.com/samarthegde/github-trending-cli",
packages=["githubtrending"],
install_requires=["requests", "click", "lxml"]
+ (["colorama"] if "win" in sys.platform else []),
entry_points={
"console_scripts": ["githubtrending = githubtrending.trending:main"],
},
)