forked from luogu-dev/cyaron
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·21 lines (20 loc) · 717 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·21 lines (20 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='cyaron',
version='0.5.0',
keywords='olympic informatics luogu aqours cyaron lovelive sunshine online judge',
description='CYaRon: Yet Another Random Olympic-iNformatics test data generator, A library for automatically generating test data for Online Judge, Olympic Informatics or automatic application testing',
license='LGPLv3',
url='https://www.luogu.com.cn/',
author='Luogu Development Team',
author_email='k@luogu.org',
packages=find_packages(),
include_package_data=True,
platforms='any',
install_requires=[
# 'pygraphviz',
'xeger',
'colorful>=0.3.5'
],
)