We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 060e61b commit 459009fCopy full SHA for 459009f
setup.cfg
@@ -1,4 +1,7 @@
1
[metadata]
2
+name = NodeGraphQt
3
+version=0.4.0
4
+author=Johnny Chan
5
license = MIT License
6
license_file = LICENSE.md
7
long_description = file: README.md
setup.py
@@ -1,12 +1,6 @@
#! /usr/bin/env python3
# -*- coding: utf-8 -*-
-import setuptools
-
-from NodeGraphQt import pkg_info
+from setuptools import setup
if __name__ == '__main__':
8
- setuptools.setup(
9
- name=pkg_info.__module_name__,
10
- version=pkg_info.__version__,
11
- author=pkg_info.__author__,
12
- )
+ setup()
0 commit comments