forked from luyuhuang/DWords
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (42 loc) · 1.5 KB
/
Copy pathsetup.py
File metadata and controls
48 lines (42 loc) · 1.5 KB
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
from DWords.version import VERSION
from setuptools import setup, find_packages
import os
here = os.path.dirname(__file__)
with open(os.path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
with open(os.path.join(here, "requirements.txt")) as f:
install_requires = [
line.strip() for line in f.readlines() if not line.startswith("#")
]
setup(
name="DWords",
version=VERSION,
description="Show words as Danmuku in the screen to helps you remember them.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/luyuhuang/DWords",
keywords="danmuku words english-learning vocabulary pyqt5",
license="GPLv3",
author="Luyu Huang",
author_email="luyu_huang@foxmail.com",
packages=find_packages(),
install_requires=install_requires,
package_data={
'': ['img/*', 'data/*']
},
entry_points={
"gui_scripts": ["DWords=DWords.__main__:main"]
},
classifiers=[
"Intended Audience :: Education",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3 :: Only",
]
)