-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
24 lines (21 loc) · 816 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import sys
import os
from setuptools import setup
from distutils.sysconfig import get_python_lib
setup_kwargs = dict(
name = 'autowrapt',
version = '1.1',
description = 'Boostrap mechanism for monkey patches.',
author = 'Graham Dumpleton',
author_email = 'Graham.Dumpleton@gmail.com',
license = 'BSD',
url = 'https://github.com/GrahamDumpleton/autowrapt',
packages = ['autowrapt'],
package_dir = {'autowrapt': 'src'},
package_data = {'autowrapt': ['__startup__/sitecustomize.py']},
data_files = [(get_python_lib(prefix=''), ['autowrapt-init.pth'])],
entry_points = {'console_scripts': ['autowrapt = autowrapt.main:main'],
'autowrapt.examples': ['this = autowrapt.examples:autowrapt_this']},
install_requires = ['wrapt>=1.10.4'],
)
setup(**setup_kwargs)