1diff --git a/setup.cfg b/setup.cfg
2index 41de928..1c18182 100644
3--- a/setup.cfg
4+++ b/setup.cfg
5@@ -1,18 +1,14 @@
6 [metadata]
7 name = colour
8 version = 0.1.5
9-summary = converts and manipulates various color representation (HSL, RVB, web, X11, ...)
10-description-file =
11- README.rst
12- CHANGELOG.rst
13- TODO.rst
14-license_file = LICENSE
15-requires-dist =
16+description = converts and manipulates various color representation (HSL, RVB, web, X11, ...)
17+long_description = file: README.rst, CHANGELOG.rst, TODO.rst
18+license_files = LICENSE
19 author = Valentin LAB
20 author_email = valentin.lab@kalysto.org
21-home_page = http://github.com/vaab/colour
22+url = http://github.com/vaab/colour
23 license = BSD 3-Clause License
24-classifier =
25+classifiers =
26 Programming Language :: Python
27 Topic :: Software Development :: Libraries :: Python Modules
28 Development Status :: 3 - Alpha
29@@ -26,16 +22,8 @@ classifier =
30 Programming Language :: Python :: 3.5
31 Programming Language :: Python :: 3.6
32
33-[files]
34-modules = colour
35-extra_files =
36- README.rst
37- CHANGELOG.rst
38- TODO.rst
39- setup.py
40-
41-[backwards_compat]
42-zip-safe = False
43+[options]
44+zip_safe = False
45
46 [bdist_wheel]
47 universal = 1
48diff --git a/setup.py b/setup.py
49index 47038f9..11a8d3a 100644
50--- a/setup.py
51+++ b/setup.py
52@@ -54,12 +54,4 @@ if "%%short-version%%".startswith("%%"):
53 sys.exit(errlvl)
54
55
56-##
57-## Normal d2to1 setup
58-##
59-
60-setup(
61- setup_requires=['d2to1'],
62- extras_require={'test': ['nose', ]},
63- d2to1=True
64-)
65+setup(extras_require={'test': ['nose', ]})