-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (38 loc) · 1.04 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
from setuptools import find_packages, setup
setup(
name="leo",
version="1.1",
description="dict.leo.org",
long_description="Leo Dictionary",
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
keywords="leo",
author="Andreas Stefl",
author_email="stefl.andreas@gmail.com",
url="https://github.com/andiwand/pyleo",
packages=find_packages(),
install_requires=[
"beautifulsoup4>=4.3.0",
"requests>=1.2.3",
"lxml>=4.1.1",
],
extras_require={
"test": [
"pycodestyle",
"codecov",
]
},
entry_points="""
[console_scripts]
leo=leo.leo:main
train=leo.train:main
""",
)