forked from CybOXProject/mixbox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
16 lines (15 loc) · 713 Bytes
/
setup.cfg
File metadata and controls
16 lines (15 loc) · 713 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# This is necessary because older versions of setuptools don't support
# environment markers in setup.py, so we have to use conditional imports there.
# Universal wheels, however, do not execute setup.py, so newer versions of pip
# which build and cache wheels may potentially produce broken wheels. For
# example, a wheel built for Python 2.7 won't include the need for weakrefset,
# since WeakSet is in the standard library in Python 2.7. If this wheel is
# cached and installed into a Python 2.6 environment, the mixbox.cache module
# won't work.
#
# https://www.python.org/dev/peps/pep-0345/#environment-markers
[metadata]
requires-dist =
lxml
python-dateutil
weakrefset; python_version == "2.6"