Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
38 lines (34 loc) · 1.14 KB
/
Copy pathsetup.py
File metadata and controls
38 lines (34 loc) · 1.14 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
importsetuptools
fromsetuptoolsimportsetup
withopen("README.md", "r") asfh:
long_description=fh.read()
withopen('VERSION') asf:
version=f.read()
setup(
name='securenative',
packages=setuptools.find_packages(),
version=version,
license='MIT',
description='Secure Native SDK for python',
author='SecureNative',
author_email='support@securenative.com',
url='http://www.securenative.com',
download_url='https://github.com/securenative/securenative-python/archive/0.1.tar.gz',
keywords=["securenative", 'cyber-security'],
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
"requests",
"pycryptodome",
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)