-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (37 loc) · 1.21 KB
/
setup.py
File metadata and controls
44 lines (37 loc) · 1.21 KB
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
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.rst')) as f:
README = f.read()
requires = [
'peewee',
'fernet',
]
links = [
'git+https://github.com/heroku/fernet-py#egg=fernet',
]
version = '0.0.2'
setup(
name='peewee_encrypted_field',
version=version,
py_modules=['peewee_encrypted_field'],
description='Field with encryption/decryption on save/read for use in Peewee ORM models',
long_description=README,
author='Constantin Roganov',
author_email='rccbox@gmail.com',
url='https://github.com/brake/peewee_encrypted_field',
download_url='https://github.com/brake/peewee_mssql/archive/' + version + '.zip',
keywords=['database', 'ORM', 'peewee', 'encryption', 'fernet', 'ciphering'],
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Topic :: Database',
'Topic :: Security',
'Topic :: Security :: Cryptography',
],
install_requires=requires,
dependency_links=links,
)