-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 861 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
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name="file2py",
packages=['file2py'],
version="0.2.4",
author="Krzysztof Warunek",
author_email="[email protected]",
description="Allows to include/manage binary files in python source file.",
license="MIT",
keywords="binary, converter, pyside, qt, pyqt, file2py",
url="https://github.com/kwarunek/file2py",
long_description='Allows to include/manage binary files in python source file.',
scripts=['scripts/file2py', 'scripts/image2py'],
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 2',
'Operating System :: POSIX',
'Development Status :: 3 - Alpha'
]
)