Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix dependencies #73

Merged
merged 1 commit into from
Dec 17, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
pygraphviz
# pygraphviz
xeger
colorful
10 changes: 7 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,19 @@

setup(
name='cyaron',
version='0.4.2',
version='0.4.3',
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.org/',
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=['colorful>=0.3.5'],
install_requires=[
# 'pygraphviz',
'xeger',
'colorful>=0.3.5'
],
)