__author__ = 'niccokunzmann@aol.com'
__version__ = '0.0.1'
METADATA = dict(
name = "ecc",
version = __version__,
packages = ['ecc'],
author='Toni Mattis',
author_email='solaris@live.de',
description='Pure Python implementation of an elliptic curve cryptosystem based on FIPS 186-3',
license='MIT',
url='https://github.com/niccokunzmann/ecc',
keywords='elliptic curve cryptosystem rabbit cipher',
)
SETUPTOOLS_METADATA = dict(
install_requires = [],
include_package_data = True,
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Communications',
'Topic :: Security :: Cryptography',
'Topic :: Internet',
],
)
def Read(file):
return open(file).read()
def BuildLongDescription():
return '\n'.join([Read('README.md'), ])
def Main():
METADATA['long_description'] = BuildLongDescription()
try:
import setuptools
METADATA.update(SETUPTOOLS_METADATA)
setuptools.setup(**METADATA)
except ImportError:
import distutils.core
distutils.core.setup(**METADATA)
if __name__ == '__main__':
Main()