-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
46 lines (43 loc) · 1.16 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
"""setup.py: setuptools control."""
import re
from setuptools import setup
version = re.search(
r'(__version__ = "(\d\.\d(\.\d+)?)")',
open("negar_gui/constants.py", encoding="utf8").read(),
re.M,
).group(2)
setup(
name="negar-gui",
version=version,
author="Javad Razavian",
author_email="[email protected]",
include_package_data=True,
packages=["negar_gui"],
install_requires=[
"python-negar>=1.2.7",
"PyQt5",
"pyperclip",
"pyuca",
"regex",
"requests",
"qrcode",
"docopt",
"Image",
"pyqtdarktheme",
"toml",
],
python_requires=">=3.6",
package_dir={"negar_gui": "negar_gui"},
description="Graphical User Interface for Negar -- Persian Text Editor",
license="GPLv3",
keywords="Spellcheck Persian Text-Editor",
url="http://github.com/javadr/negar-gui",
entry_points={
"console_scripts": [
"negar-gui-od = negar_gui.gui:main",
"negar-gui = negar_gui.main:main",
],
},
long_description_content_type="text/markdown",
long_description=open("README.md", encoding="utf8").read(),
)