forked from mosen/apkg
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 741 Bytes
/
setup.py
File metadata and controls
33 lines (30 loc) · 741 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
30
31
from setuptools import setup, find_packages
setup(
name="apkg",
version="0.1",
description="Support for the Apple Distribution Package format",
packages=['apkg'],
author="mosen",
license="MIT",
url="https://github.com/mosen/apkg",
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6'
],
keywords='apple package pkg',
install_requires=[
],
python_requires='>=3.3',
tests_require=[
'pytest',
'mock'
],
setup_requires=['pytest-runner'],
entry_points={
'console_scripts': [
'lsbom=apkg.lsbom:main'
]
},
zip_safe=False
)