forked from emulbreh/pyffx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 759 Bytes
/
setup.py
File metadata and controls
28 lines (25 loc) · 759 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
from setuptools import setup, find_packages
import sys
with open('README.rst', encoding='utf-8') as f:
description = f.read()
setup(
name='pyffx',
url='http://github.com/emulbreh/pyffx/',
version='0.2.0',
packages=find_packages(),
license=u'MIT License',
author=u'Johannes Dollinger',
description=u'pure Python format preserving encryption',
long_description=description,
install_requires=[
'six',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3'
]
)