-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
32 lines (31 loc) · 916 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
from setuptools import find_packages, setup
setup(
name='hypermediachannels',
version="0.0.5",
url='https://github.com/hishnash/hypermediachannels',
author='Matthaus Woolard',
author_email='[email protected]',
description="Hyper Media Channels Rest Framework.",
long_description=open('README.rst').read(),
license='MIT',
packages=find_packages(exclude=['tests']),
include_package_data=True,
install_requires=[
'channels>=3.0.0',
'Django>=2.11',
'djangochannelsrestframework~=0.0.6',
'channelsmultiplexer~=0.0.2'
],
extras_require={
'tests': [
'pytest~=3.7.1',
"pytest-django~=3.4.1",
"pytest-asyncio~=0.9",
'coverage~=4.4',
],
},
classifiers=[
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
]
)