Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 7 additions & 20 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,20 +1,16 @@
[metadata]
name = %%name%%
version = %%version%%
summary = %%description%%
description-file =
README.rst
CHANGELOG.rst
TODO.rst
license_file = LICENSE
requires-dist =
description = %%description%%
long_description = file: README.rst, CHANGELOG.rst, TODO.rst
license_files = LICENSE

## sdist info
author = %%author%%
author_email = %%email%%
home_page = http://github.com/vaab/%%name%%
url = http://github.com/vaab/%%name%%
license = BSD 3-Clause License
classifier =
classifiers =
Programming Language :: Python
Topic :: Software Development :: Libraries :: Python Modules
Development Status :: 3 - Alpha
Expand All @@ -29,19 +25,10 @@ classifier =
Programming Language :: Python :: 3.6


[files]
modules = %%name%%
extra_files =
README.rst
CHANGELOG.rst
TODO.rst
setup.py


[backwards_compat]
[options]
## without this ``pip uninstall`` fails on recent version of setuptools
## (tested failing with setuptools 34.3.3, working with setuptools 9.1)
zip-safe = False
zip_safe = False


[bdist_wheel]
Expand Down
10 changes: 1 addition & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,4 @@
sys.exit(errlvl)


##
## Normal d2to1 setup
##

setup(
setup_requires=['d2to1'],
extras_require={'test': ['nose', ]},
d2to1=True
)
setup(extras_require={'test': ['nose', ]})