-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·34 lines (31 loc) · 1.05 KB
/
setup.py
File metadata and controls
executable file
·34 lines (31 loc) · 1.05 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
# -*- coding: utf-8 -*-
#
# Copyright (C) Pootle contributors.
#
# This file is a part of the Pootle project. It is distributed under the GPL3
# or later license. See the LICENSE file for a copy of the license and the
# AUTHORS file for copyright and authorship information.
"""Pootle filesystem plugins
"""
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
setup(
name='pootle_ws',
version='0.0.1',
description='Pootle WS',
long_description="Pootle WebSocket hookup",
url='https://github.com/translate/pootle_ws',
author='Ryan Northey',
author_email='ryan@synca.io',
license='GPL3',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: GPL3',
'Programming Language :: Python :: 2.7',
],
keywords='pootle filesystem plugins',
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
install_requires=['pootle', "channels==0.17.3"],
)