URI: 
       tsetup.py - tomb - the crypto undertaker
  HTML git clone git://parazyd.org/tomb.git
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
       tsetup.py (582B)
       ---
            1 from setuptools import setup
            2 
            3 setup(
            4         name = 'TombLib',
            5         url = 'http://tomb.dyne.org/',
            6         author = 'boyska',
            7         author_email = 'piuttosto@logorroici.org',
            8         version = '1.1',
            9         packages = ['tomblib'],
           10 
           11         test_suite = 'nose.collector',
           12         classifiers = [
           13             'Topic :: Security :: Cryptography',
           14             'Intended Audience :: Developers',
           15             'Operating System :: POSIX :: Linux',
           16             'License :: OSI Approved :: GNU General Public License (GPL)',
           17             'Development Status :: 3 - Alpha'
           18         ]
           19 )
           20 
           21