forked from manicmaniac/arc4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (34 loc) · 1.13 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
try:
from setuptools import Extension, setup
except ImportError:
from distutils.core import Extension, setup
with open('README.rst') as f:
long_description = f.read()
setup(
name='arc4',
version='0.0.1',
description=(
'A small and insanely fast ARCFOUR (RC4) cipher implementation ' +
'of Python'
),
long_description=long_description,
author='Ryosuke Ito',
author_email='[email protected]',
url='https://github.com/manicmaniac/arc4',
ext_modules=[
Extension('arc4', sources=['arc4.c'], extra_compile_args=['-O3'])
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: Unix',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Security :: Cryptography',
],
)