-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
28 lines (25 loc) · 851 Bytes
/
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
import setuptools
with open("readme.md", "r") as fh:
long_description = fh.read()
with open("requirements.txt", "r") as f:
required = f.read().splitlines()
setuptools.setup(
name="xplcli",
version="0.1.7",
author="Heni FAZZANI",
author_email="[email protected]",
description="Simple extensible m3u playlist manager cli",
long_description=long_description,
include_package_data=True,
long_description_content_type="text/markdown",
url="https://github.com/Fazzani/pliptvcli",
packages=setuptools.find_packages(),
install_requires=required,
license="MIT",
entry_points={"console_scripts": ["xpl=pliptv.main:main"]},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)