forked from HarshCasper/Rotten-Scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 654 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 654 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
import sys
setup(
name="subtitle-downloader-python3",
description="Python tool to download subtitles for movies/series",
version="0.1.0",
author="Seema Saharan",
authorEmail="seemasaran642@gmail.com",
entry_points={
"console_scripts": [
"subtitle-downloader-python3=subtitle_downloader_python3:main"
],
},
url="https://github.com/seema1711/subtitle-downloader/",
keywords=["subtitle", "download", "utitlity", "movie"],
classifiers=[
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
],
)