-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
34 lines (33 loc) · 1.1 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
from setuptools import setup
setup(
name = "github_tool",
version = "1.0.1",
entry_points = {
'console_scripts': ['github=github_tool:main'],
},
install_requires = ['aiohttp==3.7.4'],
py_modules=['github_tool'],
author = "Willem Hengeveld",
author_email = "[email protected]",
description = "Commandline search tool for github",
long_description="""
Commandline tool which can query github, search for repositories
or code. Or get detailed info about a list of repositories, like
size, last update, etc.
""",
license = "MIT",
keywords = "github commandline",
url = "https://github.com/nlitsme/githubtool/",
classifiers = [
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.7',
'Topic :: Utilities',
'Framework :: AsyncIO',
'Topic :: Software Development :: Version Control :: Git',
],
python_requires = '>=3.7',
)