-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (42 loc) · 1.29 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
import pathlib
from setuptools import find_packages, setup
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / "README.md").read_text(encoding="utf-8")
setup(
name="udemy-enroller",
version="3.2.0",
long_description=long_description,
long_description_content_type="text/markdown",
author="aapatre",
author_email="[email protected]",
maintainer="fakeid cullzie",
url="https://github.com/aapatre/Automatic-Udemy-Course-Enroller-GET-PAID-UDEMY-COURSES-for-FREE",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Education",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Programming Language :: Python :: 3.8",
],
keywords="udemy, education, enroll",
packages=find_packages(
exclude=["*tests*"],
),
python_requires=">=3.8, <4",
install_requires=[
"aiohttp[speedups]",
"beautifulsoup4",
"ruamel.yaml",
"requests",
"cloudscraper",
],
setup_requires=["pytest-runner"],
extras_require={
"dev": ["black", "isort"],
"test": ["pytest", "pytest-cov"],
},
entry_points={
"console_scripts": [
"udemy_enroller=udemy_enroller.cli:main",
],
},
)