-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (45 loc) · 1.37 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
from setuptools import setup, find_packages
VERSION = "1.21"
DESCRIPTION = "CLI for downloading all gists from a specified user."
with open("README.md", "r") as file:
LONG_DESCRIPTION = file.read()
AUTHOR = "NecRaul"
setup(
name="gist_neko",
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
author=AUTHOR,
packages=find_packages(),
install_requires=["requests"],
keywords=[
"python",
"gists downloader",
"downloader",
"gists",
"gist-neko",
"kuroneko",
],
url="https://github.com/NecRaul/gist-neko",
project_urls={
"Documentation": "https://github.com/NecRaul/gist-neko#readme",
"Source": "https://github.com/NecRaul/gist-neko",
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Internet :: WWW/HTTP",
],
py_modules=["download", "environment"],
entry_points={
"console_scripts": [
"gist-neko = gist_neko.main:main",
],
},
)