-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
22 lines (20 loc) · 800 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
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(name='filesig',
version='0.3.0-1',
description="Python command on top of 'poppler-utils' and 'openssl' used to verify file signatures",
long_description=readme(),
classifiers=['Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3'],
url='https://github.com/peppelinux/FileSignatureValidator',
author='Giuseppe De Marco',
author_email='giuseppe.demarco@unical.it',
license='BSD',
scripts=['filesig/filesig.py'],
packages=['filesig'],
install_requires=[],
)