-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (27 loc) · 850 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
# -*- coding:utf-8 -*-
###
# Copyright (c) 2023 Haofan Zheng
# Use of this source code is governed by an MIT-style
# license that can be found in the LICENSE file or at
# https://opensource.org/licenses/MIT.
###
from setuptools import setup
from setuptools import find_packages
import GradescopeGrader._Meta
setup(
name = GradescopeGrader._Meta.PKG_NAME,
version = GradescopeGrader._Meta.__version__,
packages = find_packages(where='.', exclude=['tests*']),
url = 'https://github.com/lsd-ucsc/GradescopeGrader',
license = GradescopeGrader._Meta.PKG_LICENSE,
author = GradescopeGrader._Meta.PKG_AUTHOR,
description = GradescopeGrader._Meta.PKG_DESCRIPTION,
entry_points= {
'console_scripts': [
'GradescopeGrader=GradescopeGrader.__main__:main',
]
},
install_requires=[
],
)