Skip to content

Commit 459009f

Browse files
committed
setup clean up #269
1 parent 060e61b commit 459009f

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed

setup.cfg

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
[metadata]
2+
name = NodeGraphQt
3+
version=0.4.0
4+
author=Johnny Chan
25
license = MIT License
36
license_file = LICENSE.md
47
long_description = file: README.md

setup.py

+2-8
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
#! /usr/bin/env python3
22
# -*- coding: utf-8 -*-
3-
import setuptools
4-
5-
from NodeGraphQt import pkg_info
3+
from setuptools import setup
64

75
if __name__ == '__main__':
8-
setuptools.setup(
9-
name=pkg_info.__module_name__,
10-
version=pkg_info.__version__,
11-
author=pkg_info.__author__,
12-
)
6+
setup()

0 commit comments

Comments
 (0)