forked from mosen/bixar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (31 loc) · 760 Bytes
/
setup.py
File metadata and controls
34 lines (31 loc) · 760 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
32
from setuptools import setup, find_packages
setup(
name="bixar",
version="0.1",
description="Support for the XAR (Extensible Archive Format) Format",
packages=['bixar'],
author="mosen",
license="MIT",
url="https://github.com/mosen/bixar",
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6'
],
keywords='XAR',
install_requires=[
'signxml>=2.3.0'
],
python_requires='>=3.5',
tests_require=[
'pytest',
'mock'
],
setup_requires=['pytest-runner'],
entry_points={
'console_scripts': [
'bixar=bixar.cli:main',
]
},
zip_safe=False
)