-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
32 lines (27 loc) · 1.06 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
from setuptools import setup, find_packages
from os import path
script_location = path.abspath(path.dirname(__file__))
setup(
# information about the package
name="grafatko",
version="0.2.6",
author="Tomáš Sláma",
author_email="tomas@slama.dev",
keywords="graph graphs pyqt5 algorithm algorithms",
url="https://github.com/xiaoxiae/Grafatko",
description="An app for creating and visualizing graphs and graph-related algorithms.",
long_description=open(path.join(script_location, "README.md"), "r").read(),
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
# where to look for files
packages=["grafatko"],
data_files=[("", ["LICENSE.txt", "README.md", "icon.ico", "DOCUMENTATION.md"])],
entry_points={'console_scripts': ['grafatko=grafatko.__init__:run']},
# requirements
install_requires=["pyqt5", "qtmodern"],
python_requires='>=3.7.1',
)