-
-
Notifications
You must be signed in to change notification settings - Fork 322
/
setup.py
35 lines (33 loc) · 1.09 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
from setuptools import setup, find_packages
import sys
import os
sys.path.append(
os.path.join(os.path.abspath(os.path.dirname(__file__)), "PyFlow", "Core")
)
from version import currentVersion
setup(
name="PyFlow",
version=str(currentVersion()),
packages=find_packages(),
entry_points={"console_scripts": ["pyflow = PyFlow.Scripts:main"]},
include_package_data=True,
author="Ilgar Lunin, Pedro Cabrera",
author_email="[email protected]",
description="A general purpose runtime extendable python qt node editor.",
keywords="visual programming framework",
url="https://wonderworks-software.github.io/PyFlow", # project home page
project_urls={
"Bug Tracker": "https://github.com/wonderworks-software/PyFlow/issues",
"Documentation": "https://pyflow.readthedocs.io",
"Source Code": "https://github.com/wonderworks-software/PyFlow",
},
classifiers=["License :: Appache-2.0"],
install_requires=[
"PySide6",
"qtpy",
"blinker",
"docutils",
"SQLAlchemy",
"requests",
],
)