This repository was archived by the owner on Oct 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (38 loc) · 1.27 KB
/
setup.py
File metadata and controls
42 lines (38 loc) · 1.27 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
import os
from setuptools import setup, find_packages
from dbas.views.helper import version
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md')) as f:
README = f.read()
with open(os.path.join(here, 'CHANGELOG.md')) as f:
CHANGES = f.read()
requires = []
__version__ = version
setup(name='dbas',
version=__version__,
description='Novel prototype for a dialog-based online argumentation',
long_description=README + '\n\n' + CHANGES,
classifiers=[
"Programming Language :: Python",
"Framework :: Pyramid",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: NGINX :: Application",
],
author='hhucn',
author_email='dbas@cs.hhu.de',
url='https://dbas.cs.hhu.de',
keywords='web pyramid pylons dialog-based argumentation software',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=requires,
tests_require=requires,
test_suite="dbas",
entry_points="""\
[paste.app_factory]
main = dbas:main
[console_scripts]
promote_to_admin = dbas.console_scripts:promote_user
demote_to_user = dbas.console_scripts:demote_user
""",
)