-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (33 loc) · 1.09 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="ytps",
version="0.1.1",
description="Youtube Search in the CLI - Improved",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/newtoallofthis123/ytps",
author="NoobScience",
author_email="noobscience123@gmail.com",
license="MIT",
project_urls={
"Author WebSite" : "https://newtoallofthis123.github.io/About",
"Bug Tracker": "https://github.com/newtoallofthis123/ytps/issues",
},
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
],
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
python_requires=">=3.6",
include_package_data=True,
install_requires=["rich", "youtube-search", "youtube-search-python"],
entry_points={
"console_scripts": [
"ytps=ytps.__main__:ytps",
]
},
)