-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
47 lines (42 loc) · 1.71 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from pymakeself.makeself import __version__
with open("README.md", "r") as fh:
long_description = fh.read()
# This is not zip_safe because the installer creation logic needs access to the
# raw source files in installtools/
#
def main():
setup(
name='pymakeself',
version=__version__,
author='Andrew Gillis',
author_email='gillis.andrewj@gmail.com',
url='https://github.com/gammazero/pymakeself',
description='pymakeself: make self-extracting archives',
long_description=long_description,
long_description_content_type='text/markdown',
license='http://www.opensource.org/licenses/mit-license.php',
platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],
keywords='archive installation tar',
classifiers=['Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
'Programming Language :: Python',
'Programming Language :: Python :: 3'],
packages=['pymakeself', 'pymakeself.installtools', 'pymakeself.aes'],
entry_points={
'console_scripts': [
'pymakeself = pymakeself.makeself:main'],
},
zip_safe=False,
)
if __name__ == '__main__':
main()