-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (23 loc) · 861 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
import setuptools
setuptools.setup(name='vj4',
version='4.0',
author='Vijos',
author_email='[email protected]',
description='Vijos Web Server',
license='AGPL-3.0',
keywords='vijos online judge web',
url='https://vijos.org/',
packages=[
'vj4',
'vj4.handler',
'vj4.model',
'vj4.model.adaptor',
'vj4.pipeline',
'vj4.service',
'vj4.util',
],
package_data={
'vj4': ['locale/*.csv', 'ui/templates/*', '.uibuild/*'],
},
install_requires=open('requirements.txt').readlines(),
test_suite='vj4.test')