--- setup.cfg.orig 2017-11-20 02:15:26.000000000 +0300 +++ setup.cfg 2022-01-25 23:25:46.496198682 +0300 @@ -1,18 +1,17 @@ [metadata] name = colour version = 0.1.5 -summary = converts and manipulates various color representation (HSL, RVB, web, X11, ...) -description-file = - README.rst - CHANGELOG.rst +description = converts and manipulates various color representation (HSL, RVB, web, X11, ...) +long_description = + README.rst, + CHANGELOG.rst, TODO.rst license_file = LICENSE -requires-dist = author = Valentin LAB author_email = valentin.lab@kalysto.org -home_page = http://github.com/vaab/colour +url = http://github.com/vaab/colour license = BSD 3-Clause License -classifier = +classifiers = Programming Language :: Python Topic :: Software Development :: Libraries :: Python Modules Development Status :: 3 - Alpha @@ -26,19 +25,10 @@ Programming Language :: Python :: 3.5 Programming Language :: Python :: 3.6 -[files] -modules = colour -extra_files = - README.rst - CHANGELOG.rst - TODO.rst - setup.py - -[backwards_compat] -zip-safe = False - -[bdist_wheel] -universal = 1 +[options] +requires_dist = +py_modules = colour +zip_safe = False [nosetests] verbosity = 3 --- setup.py.orig 2017-11-20 02:15:25.000000000 +0300 +++ setup.py 2022-01-25 23:10:37.928173912 +0300 @@ -9,12 +9,7 @@ ## you can also find here: https://gist.github.com/vaab/9118087/raw ## -try: - from setuptools import setup -except ImportError: - from distribute_setup import use_setuptools - use_setuptools() - from setuptools import setup +from setuptools import setup ## ## Ensure that ``./autogen.sh`` is run prior to using ``setup.py`` @@ -55,11 +50,9 @@ ## -## Normal d2to1 setup +## Normal setup ## setup( - setup_requires=['d2to1'], - extras_require={'test': ['nose', ]}, - d2to1=True + extras_require={'test': ['nose', ]} )