2011-11-03 12:42:43 +00:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name = 'TombLib',
|
2012-02-01 22:27:18 +00:00
|
|
|
url = 'http://tomb.dyne.org/',
|
|
|
|
author = 'boyska',
|
|
|
|
author_email = 'piuttosto@logorroici.org',
|
2011-11-03 12:42:43 +00:00
|
|
|
version = '1.1',
|
|
|
|
packages = ['tomblib'],
|
|
|
|
|
2012-02-01 22:27:18 +00:00
|
|
|
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'
|
|
|
|
]
|
2011-11-03 12:42:43 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|