File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 11PySide2 >= 5.12
22Qt.py >= 1.2.0.b2
3+ python >= 3.6
Original file line number Diff line number Diff line change 22# -*- coding: utf-8 -*-
33import setuptools
44
5- from NodeGraphQt import __version__ as version
5+ import NodeGraphQt
66
77with open ('README.md' , 'r' ) as fh :
88 long_description = fh .read ()
99
10+ with open ('requirements.txt' ) as f :
11+ requirements = f .read ().splitlines ()
12+
1013description = (
1114 'Node graph framework that can be re-implemented into applications that '
1215 'supports PySide & PySide2'
1922
2023setuptools .setup (
2124 name = 'NodeGraphQt' ,
22- version = version ,
25+ version = NodeGraphQt .__version__ ,
26+ install_requires = requirements ,
2327 author = 'Johnny Chan' ,
24282529 description = description ,
2832 url = 'https://github.com/jchanvfx/NodeGraphQt' ,
2933 packages = setuptools .find_packages (exclude = ["example_nodes" ]),
3034 classifiers = classifiers ,
31- include_package_data = True ,
32- python_requires = '>=3.6' ,
35+ include_package_data = True
3336)
3437
3538
You can’t perform that action at this time.
0 commit comments