-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
43 lines (41 loc) · 1.25 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
from setuptools import find_packages, setup
import cambd
setup(
name="cambd",
version=cambd.__version__,
author="Rocktim Saikia",
author_email="[email protected]",
url="https://github.com/rocktimsaikia/cambd",
license="MIT",
description="Cambridge dictionary cli app",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
install_requires=[
"beautifulsoup4>=4.11.1",
"html5lib>=1.1.0",
"click>=8.0.3",
"halo>=0.0.31",
"requests>=2.25.1",
"rich>=12.6.0",
"simple_term_menu>=1.5.2",
],
entry_points={
"console_scripts": [
"cambd = cambd.cambd:main",
]
},
packages=find_packages(),
classifiers=[
"Environment :: Console",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Terminals",
"Topic :: Utilities",
],
)