-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
41 lines (37 loc) · 1.24 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
39
40
41
import os
from setuptools import setup, find_packages
def get_readme():
try:
return open(os.path.join(os.path.dirname(__file__), 'README.md')).read()
except IOError:
return ''
setup(
name='securitylib',
version='1.0.9',
packages=find_packages(),
install_requires=[
'pycryptodome==3.19.1',
],
package_data={
'': ['*.txt', '*.md'],
},
author='Jose Nuno Pires',
author_email='[email protected]',
url='http://oss.sapo.pt/securitylib-python/',
description=('The SAPO Security Lib is a library whose purpose is to '
'provide functions/classes that solve common security related problems,'
' while being easy to use even by those who are not security experts.'),
long_description=get_readme(),
license='MIT',
keywords=['security', 'crypto', 'securitylib'],
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Operating System :: Unix',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python :: 3',
'Topic :: Security :: Cryptography',
],
)