-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (35 loc) · 1.1 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
from setuptools import setup, find_packages
from setuptools.command.install import install
import os
setup(
name='pkns',
version='0.5.8',
description='PKNS Framework and CLI',
author='Anubhav Mattoo',
author_email='anubhavmattoo@outlook.com',
packages=find_packages(),
entry_points={
'console_scripts': ['pkns=pkns.cli:main']
},
install_requires=[
'daemonocle',
'sqlitedict',
'pycryptodome>=3.7',
'click'
],
license=open('./LICENSE', 'r').read(),
long_description=open('./README.md', 'r').read(),
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Communications',
'Topic :: Internet',
'Topic :: Security :: Cryptography',
'Development Status :: 4 - Beta'
]
)