setup.py
author Hartmut Goebel <h.goebel@crazy-compilers.com>
Thu, 27 Oct 2016 14:37:23 +0200
changeset 49 6e781b10c5a4
parent 45 4ac3bb01f0bc
child 65 d659b8c2ed22
permissions -rw-r--r--
Makefile: Add target `install`.

This makes distribution packagers live even easier.
45
4ac3bb01f0bc Add setup.py, setup.cfg and MANIFEST.in.
Hartmut Goebel <h.goebel@crazy-compilers.com>
parents:
diff changeset
     1
4ac3bb01f0bc Add setup.py, setup.cfg and MANIFEST.in.
Hartmut Goebel <h.goebel@crazy-compilers.com>
parents:
diff changeset
     2
from setuptools import setup, find_packages
4ac3bb01f0bc Add setup.py, setup.cfg and MANIFEST.in.
Hartmut Goebel <h.goebel@crazy-compilers.com>
parents:
diff changeset
     3
4ac3bb01f0bc Add setup.py, setup.cfg and MANIFEST.in.
Hartmut Goebel <h.goebel@crazy-compilers.com>
parents:
diff changeset
     4
setup(
4ac3bb01f0bc Add setup.py, setup.cfg and MANIFEST.in.
Hartmut Goebel <h.goebel@crazy-compilers.com>
parents:
diff changeset
     5
    setup_requires = ["setuptools >= 30.3.0"],  # release 2016-12-06
4ac3bb01f0bc Add setup.py, setup.cfg and MANIFEST.in.
Hartmut Goebel <h.goebel@crazy-compilers.com>
parents:
diff changeset
     6
)