- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
27 lines (24 loc) · 771 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (24 loc) · 771 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
fromsetuptoolsimportsetup, find_packages
importio
importsys
withio.open("README.rst", encoding="utf-8") asf:
description=f.read()
setup(
name="pyffx",
url="http://github.com/emulbreh/pyffx/",
version="0.3.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 :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
],
)