diff --git a/setup.cfg b/setup.cfg index 14735f10..da69c535 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,4 +1,7 @@ [metadata] +name = NodeGraphQt +version=0.4.0 +author=Johnny Chan license = MIT License license_file = LICENSE.md long_description = file: README.md diff --git a/setup.py b/setup.py index 03de8602..0a3c5c5e 100644 --- a/setup.py +++ b/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__': - setuptools.setup( - name=pkg_info.__module_name__, - version=pkg_info.__version__, - author=pkg_info.__author__, - ) + setup()