forked from olimpiadi-informatica/cmsocial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (40 loc) · 1.58 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
36
37
38
39
40
41
42
43
44
45
46
# -*- coding: utf-8 -*-
"""Build and installation routines for CMSocial.
"""
from __future__ import absolute_import
from __future__ import print_function
# setuptools doesn't seem to like this:
# from __future__ import unicode_literals
import os
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": [
# "cmsocialServer=cmsocial.server.pws:main", # we must rename this because of CMS's ResourceService
"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",
]
)