Skip to content

Commit

Permalink
Merge pull request #211 from jdufresne/no-require-setuptools
Browse files Browse the repository at this point in the history
Drop requirement for setuptools package from setup.py
  • Loading branch information
untitaker authored Jan 25, 2017
2 parents fd1f8a1 + 70985f1 commit 4ff6452
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
3 changes: 2 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ Changelog

Breaking changes:

- *add item here*
- Removed ``setuptools`` as a dependency as it was only required by setup.py
and not by the package.

New features:

Expand Down
5 changes: 2 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ with Python.
:Homepage: http://icalendar.readthedocs.org
:Code: http://github.com/collective/icalendar
:Mailing list: http://github.com/collective/icalendar/issues
:Dependencies: `setuptools`_ and since version 3.0 we depend on `pytz`_.
:Dependencies: `python-dateutil`_ and `pytz`_.
:Compatible with: Python 2.6, 2.7 and 3.3+
:License: `BSD`_

Expand Down Expand Up @@ -72,8 +72,8 @@ a suggestion to [email protected] to take over maintaining of
.. _`icalendar`: http://pypi.python.org/pypi/icalendar
.. _`plone.app.event`: http://github.com/plone/plone.app.event
.. _`Plone`: http://plone.org
.. _`python-dateutil`: https://github.com/dateutil/dateutil/
.. _`pytz`: http://pypi.python.org/pypi/pytz
.. _`setuptools`: http://pypi.python.org/pypi/setuptools
.. _`RFC`: http://www.ietf.org/rfc/rfc5545.txt
.. _`BSD`: https://github.com/collective/icalendar/issues/2

Expand All @@ -96,4 +96,3 @@ Output from coverage test::
src/icalendar/tools 16 0 100%
--------------------------------------------------
TOTAL 1152 81 93%

1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
install_requires = [
'python-dateutil',
'pytz',
'setuptools',
]

if sys.version_info[:2] == (2, 6):
Expand Down

0 comments on commit 4ff6452

Please sign in to comment.