-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (26 loc) · 961 Bytes
/
setup.py
File metadata and controls
29 lines (26 loc) · 961 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
from __future__ import absolute_import, print_function
from glob import glob
from os.path import basename, dirname, join, splitext
from setuptools import find_packages, setup
import io
import re
import sys
import versioneer
# See https://blog.ionelmc.ro/2014/06/25/python-packaging-pitfalls/
setup(name='py2exe-helpers',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='Helper functions, etc. for `py2exe`.',
keywords='',
author='Christian Fobel',
author_email='christian@fobel.net',
url='https://github.com/sci-bots/py2exe-helpers',
license='BSD',
packages=find_packages('src'),
package_dir={'': 'src'},
install_requires=[],
py_modules=[splitext(basename(path))[0] for path in glob('src/*.py')],
# Install data listed in `MANIFEST.in`
include_package_data=True)