-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (32 loc) · 1.04 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
from setuptools import setup
from openshield.__init__ import __version__
with open('README.md') as file:
readme = file.read()
setup(
author='Jaedson Silva',
author_email='jaedson.dev@proton.me',
name='openshield',
description='OpenShield, a fast and easy-to-use CLI antivirus.',
version=__version__,
packages=['openshield'],
url='https://github.com/jaedsonpys/openshield',
long_description=readme,
long_description_content_type='text/markdown',
license='MIT',
python_requires='>=3.7',
install_requires=['argeasy==3.0.0', 'requests==2.28.2'],
entry_points={
'console_scripts': [
'openshield = openshield.__main__:main'
]
},
keywords=['antivirus', 'malware', 'scanner', 'cli'],
classifiers=[
'License :: OSI Approved :: MIT License',
'Development Status :: 5 - Production/Stable',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Security'
],
)