-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 764 Bytes
/
Copy pathsetup.py
File metadata and controls
22 lines (20 loc) · 764 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_namespace_packages
import io
with io.open('README.md', encoding='utf-8') as f:
long_description = f.read()
setup(
name='qsnctf',
version='0.0.9.3',
python_requires='>=3.9',
install_requires=['PyExecJS2', 'base58', 'requests', 'bs4', 'urllib3', 'rarfile', 'sympy'],
packages=find_namespace_packages(include=['qsnctf', 'qsnctf.*']),
include_package_data=True,
package_data={'qsnctf': ['plugin/*']},
url='https://github.com/Moxin1044/qsnctf-python',
license='MIT License',
long_description=long_description,
long_description_content_type='text/markdown',
author='Moxin',
author_email='[email protected]',
description='青少年CTF训练平台提供的Python软件包'
)