mirror of
https://github.com/Llewellynvdm/Tomb.git
synced 2024-11-06 05:17:59 +00:00
4a04d9dd84
including the old qt and python wrappers as discussed in issue #113
22 lines
582 B
Python
22 lines
582 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name = 'TombLib',
|
|
url = 'http://tomb.dyne.org/',
|
|
author = 'boyska',
|
|
author_email = 'piuttosto@logorroici.org',
|
|
version = '1.1',
|
|
packages = ['tomblib'],
|
|
|
|
test_suite = 'nose.collector',
|
|
classifiers = [
|
|
'Topic :: Security :: Cryptography',
|
|
'Intended Audience :: Developers',
|
|
'Operating System :: POSIX :: Linux',
|
|
'License :: OSI Approved :: GNU General Public License (GPL)',
|
|
'Development Status :: 3 - Alpha'
|
|
]
|
|
)
|
|
|
|
|