-
Notifications
You must be signed in to change notification settings - Fork 53
/
setup.py
44 lines (41 loc) · 1.4 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
import setuptools
with open("README.md", "r", encoding="utf8") as fh:
long_description = fh.read()
with open("requirements.txt") as f:
required = f.read().splitlines()
setuptools.setup(
name="echo360",
version="v3.0",
description="Commandline tool for automated downloads of echo360 videos",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/soraxas/echo360",
project_urls={
"Documentation": "https://github.com/soraxas/echo360/blob/master/README.md",
"Code": "https://github.com/soraxas/echo360",
"Issue tracker": "https://github.com/soraxas/echo360/issues",
},
python_requires=">=2.7",
install_requires=required,
platforms="linux, macos, windows",
entry_points={
"console_scripts": [
"echo360-downloader=echo360.main:main",
],
},
package_data={"echo360": ["*.py"]},
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Programming Language :: Unix Shell",
"Topic :: System :: Shells",
"Topic :: System :: System Shells",
"Topic :: Terminals",
"Topic :: System :: Networking",
"License :: OSI Approved :: MIT License",
],
license="MIT",
author="soraxas",
author_email="[email protected]",
)