-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
35 lines (33 loc) · 1.15 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
setup(
name = 'gsnodegraph',
packages = ['gsnodegraph',
'gsnodegraph.graph',
'gsnodegraph.graph.utils',
'gsnodegraph.node',
'gsnodegraph.assets'],
version = '0.5.6',
license = 'Apache 2.0',
description = 'Powerful node graph widget for wxPython GUIs',
long_description_content_type="text/markdown",
author = 'Noah Rahm and contributors',
author_email = 'correctsyntax@yahoo.com',
url = 'https://github.com/GimelStudio/gsnodegraph',
keywords = ['nodegraph', 'nodes', 'graph', 'node-based', 'widget'],
install_requires = [
'wxpython==4.2.1'
],
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Desktop Environment',
'Topic :: Multimedia :: Graphics :: Editors',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
)