-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·57 lines (41 loc) · 1.24 KB
/
setup.py
File metadata and controls
executable file
·57 lines (41 loc) · 1.24 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/usr/bin/env python3
from codecs import open
from os import path
from setuptools import setup
CURRENT_PATH = path.abspath(path.dirname(__file__))
with open(path.join(CURRENT_PATH, 'README.rst'), encoding='utf-8') as f:
LONG_DESCRIPTION = f.read()
setup(
name='jutge_cli',
version='2.2.3',
description='CLI to automate tests for jutge.org problems',
long_description=LONG_DESCRIPTION,
url='http://github.com/Leixb/jutge_cli',
author='Aleix Boné (Leix_b)',
author_email='abone9999@gmail.com',
license='GPL3',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Education',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Education',
],
keywords='jutge jutge.org jutge_cli',
packages=['jutge_cli', 'jutge_cli.commands'],
install_requires=[
'argparse',
'beautifulsoup4',
'pypandoc',
'pyyaml',
'requests',
],
extras_require={
'lxml' : ['lxml']
},
entry_points={
'console_scripts': ['jutge=jutge_cli.jutge:main'],
},
zip_safe=True
)