forked from Varbin/xtea
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (39 loc) · 1.38 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
from __future__ import with_statement # Reading README
import sys
import warnings
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
def get_file(name):
try:
with open(name) as f:
return f.read()
except:
return ''
long_text = get_file("README.rst") + "\n\n" + get_file("changelog.rst")
setup(name='xtea',
version='0.6.0',
description="A python version of XTEA",
long_description = long_text,
author="Simon Biewald",
author_email="[email protected]",
url="https://github.com/Varbin/xtea/wiki",
download_url="https://github.com/Varbin/xtea",
bugtrack_url="https://github.com/Varbin/xtea/issues",
keywords = "xtea tea encryption crypt",
license="Public Domain",
py_modules=['xtea'],
classifiers=[
"Development Status :: 4 - Beta",
"License :: Public Domain",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: IronPython",
"Programming Language :: Python :: Implementation :: Jython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Security",
"Topic :: Security :: Cryptography"]
)