-
Notifications
You must be signed in to change notification settings - Fork 55
/
setup.py
33 lines (30 loc) · 1.12 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
from setuptools import find_packages, setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open("requirements.txt", "r", encoding="utf-8") as fh:
required = fh.read().splitlines()
setup(
name="datacamp-downloader",
version="3.2",
author="Mohammad Al-Fetyani",
author_email="[email protected]",
description="Download your completed courses on Datacamp easily!",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/TRoboto/datacamp-downloader",
project_urls={
"Bug Tracker": "https://github.com/TRoboto/datacamp-downloader/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
package_dir={"": "src"},
install_requires=required,
setup_requires=["setuptools-git"],
packages=find_packages(where="src"),
include_package_data=True,
python_requires=">=3.6",
entry_points={"console_scripts": ["datacamp=datacamp_downloader.downloader:app"]},
)