-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
executable file
·35 lines (33 loc) · 1.27 KB
/
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
33
34
35
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name="cmsocial",
version="0.1.0",
author="algorithm-ninja",
author_email="algorithm@ninja",
url="https://github.com/algorithm-ninja/cmsocial",
download_url="https://github.com/algorithm-ninja/cmsocial/archive/master.tar.gz",
description="A web application that builds a social coding platform upon CMS",
packages=find_packages(),
include_package_data=True,
entry_points={
"console_scripts": [
"cmsPracticeWebServer=cmsocial.server.pws:main",
"cmsocialSyncTasks=cmsocial.scripts.synctasks:main",
"cmsocialSyncUsers=cmsocial.scripts.syncusers:main",
"cmsocialDuplicateContest=cmsocial.scripts.duplicate_contest:main",
"cmsocialUpdateScore=cmsocial.scripts.update_score:main"
]
},
keywords="ioi programming contest grader management system",
license="Affero General Public License v3",
classifiers=[
"Development Status :: 3 - Alpha",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 2",
"License :: OSI Approved :: "
"GNU Affero General Public License v3",
]
)