-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (26 loc) · 948 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
#!/usr/bin/env python
# -*- coding:utf-8 -*-
from setuptools import setup, find_packages
__authors__ = "Jordan Ovrè, Paul Duncan"
__copyright__ = "Copyright (c) ImmunIT - Jordan Ovrè / Paul Duncan"
__license__ = "Apache 2.0"
__version__ = "1.1.2"
__contact__ = "Jordan Ovrè / Ghecko <jovre@immunit.ch>, Paul Duncan / Eresse <pduncan@immunit.ch>"
description = 'Program generic SPI flash memories'
name = 'owfmodules.spi.flash_write'
setup(
name=name,
version=__version__,
packages=find_packages(),
license=__license__,
description=description,
author=__authors__,
zip_safe=True,
url='https://github.com/immunIT/' + name,
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Development Status :: 5 - Production/Stable'
],
keywords=['octowire', 'framework', 'hardware', 'security', 'spi', 'write', 'flash', 'memory']
)