-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathsetup.py
32 lines (28 loc) · 812 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
25
26
27
28
29
30
31
32
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
setup(
name='unpy2exe',
version='0.4',
description='Extract pyc files from py2exe executable.',
long_description=long_description,
long_description_content_type='text/markdown',
keywords=['py2exe', 'pyc', 'extract'],
author='Matias Bordese',
author_email='[email protected]',
url='http://github.com/matiasb/unpy2exe',
license='MIT',
py_modules=['unpy2exe'],
scripts=['unpy2exe'],
install_requires=[
'argparse',
'pefile',
'six',
],
classifiers=[
'Intended Audience :: Developers',
'Development Status :: 4 - Beta',
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 3',
],
)