-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
32 lines (27 loc) · 811 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
31
32
#!/usr/bin/env python3
import imp
from setuptools import find_packages
from setuptools import setup
def load_module(module_path):
path = None
for name in module_path.split("."):
file, path, description = imp.find_module(name, path)
path = [path]
return imp.load_module(name, file, path[0], description)
setup(
name="Rujaion",
version="0.15.0",
author="Ryosuke Fukatani",
install_requires=[
"PyQt5",
"PyQtWebEngine",
"pexpect",
"online-judge-tools == 11.1.1",
"online-judge-api-client == 10.5.0",
"pandas",
"plotly",
],
packages=find_packages(exclude=("docker", "doc")),
package_data={"rujaion": ["resources/*"]},
entry_points={"console_scripts": ["rujaion = rujaion.rujaion_main:main"]},
)