File: setup.py

package info (click to toggle)
python-flatdict 4.0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 168 kB
  • sloc: python: 697; makefile: 4
file content (7 lines) | stat: -rw-r--r-- 270 bytes parent folder | download
1
2
3
4
5
6
7
import pkg_resources
import setuptools

setuptools_version = pkg_resources.parse_version(setuptools.__version__)
if setuptools_version < pkg_resources.parse_version('39.2'):
    raise SystemExit('setuptools 39.2 or greater required for installation')
setuptools.setup()