-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (44 loc) · 1.45 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
44
45
46
47
48
49
"""The setup script."""
from __future__ import absolute_import
from __future__ import unicode_literals
import setuptools
with open('README.md') as readme_file:
readme = readme_file.read()
requirements = ['Click>=7.0',
'setuptools',
'pdfminer',
'selenium',
'arxiv',
'markdown']
setuptools.setup(
name="eigoyurusan",
version="0.1.8",
author="Sora Takashima",
author_email="[email protected]",
description="English is too difficult for me.",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/masora1030/eigoyurusan",
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[
"Intended Audience :: Education",
"Topic :: Text Processing :: Linguistic",
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
],
install_requires=requirements,
license="MIT license",
keywords="eigoyurusan, translate, translator, paper, PDF",
project_urls={
"Projects": "https://github.com/users/masora1030/projects/1",
"Source": "https://github.com/masora1030/eigoyurusan",
},
entry_points="""
# -*- Entry points: -*-
[console_scripts]
eigoyurusan = eigoyurusan.eigoyurusan:main
""",
)