-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
29 lines (28 loc) · 908 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
29
from setuptools import setup
setup(
author="CS50",
author_email="[email protected]",
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development"
],
message_extractors = {
'cli50': [('**.py', 'python', None),],
},
description="This is CS50 CLI, with which you can mount a directory inside of an Ubuntu container.",
long_description=open("README.md").read(),
license="GPLv3",
install_requires=["inflect", "packaging", "requests", "tzlocal"],
keywords="cli50",
name="cli50",
python_requires=">=3.8",
packages=["cli50"],
entry_points={
"console_scripts": ["cli50=cli50.__main__:main"]
},
url="https://github.com/cs50/cli50",
version="8.0.1",
include_package_data=True
)