forked from meanmail/SubmissionUtility
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 765 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
from setuptools import find_packages, setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='stepik-cli',
version='0.4.2',
description="A Stepik CLI for students",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/aryarm/stepik-cli",
install_requires=[
'click>=3.0',
'requests',
'colorama',
'html2text'
],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
packages=find_packages(include=['stepik', 'stepik.client', 'stepik.models']),
entry_points={
'console_scripts': ['stepik=stepik.__main__:main']
},
)