-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (27 loc) · 903 Bytes
/
setup.py
File metadata and controls
32 lines (27 loc) · 903 Bytes
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
from setuptools import setup, Extension
from Cython.Distutils import build_ext
extensions = [
Extension('cypyffx.cyffx', ['cypyffx/cyffx.pyx'])
]
setup(
name = 'cypyffx',
version = '0.1.0',
description = 'Format preserving encyption',
packages = ['cypyffx'],
install_requires = ['cython'],
cmdclass = {'build_ext': build_ext},
ext_modules = extensions,
author = 'Chris Poliquin',
author_email = 'chrispoliquin@gmail.com',
url = 'https://github.com/poliquin/cypyffx',
keywords = ['ffx', 'anonymization', 'encyption', 'crypto'],
classifiers = [
'Programming Language :: Python :: 3',
'Programming Language :: Cython',
'Operating System :: OS Independent',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Utilities',
'Topic :: Security :: Cryptography'
]
)