-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
30 lines (28 loc) · 846 Bytes
/
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
import sys
from setuptools import setup, find_packages
__name__ = 'cytro'
__version__ = '0.2.1'
__author__ = 'Neptune ([email protected])'
__license__ = 'MIT'
setup(name=__name__,
version=__version__,
author=__author__,
author_email='[email protected]',
license=__license__,
url='https://github.com/maojui/cytro',
description='cryptography tools for CTF crypto challennge',
keywords=['CTF','cryptools','crypto','cytro'],
packages=find_packages(),
provides=['cytro'],
install_requires=[
'pycipher>=0.5.2',
'pycrypto>=2.6.1',
'pillow>=8.2.0',
'sympy>=1.4',
],
classifiers=['Natural Language :: Chinese',
'License :: OSI Approved :: MIT License',
'Topic :: Competition :: Capture the Flag',
'Topic :: Security :: Cryptography',
],
)