-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathsetup.py
40 lines (36 loc) · 1.2 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
readme_file = os.path.join(here, 'README.rst')
changes_file = os.path.join(here, 'CHANGES.rst')
long_description = '\n\n'.join((
open(readme_file).read(),
open(changes_file).read(),
))
setup(
name = 'dwebsocket',
version = '0.5.12',
url = 'http://github.com/duanhongyi/dwebsocket',
license = 'BSD',
description = 'Websocket support for django.',
long_description = long_description,
long_description_content_type='text/markdown',
author = "duanhongyi",
author_email = '[email protected]',
packages = find_packages(),
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities'
],
zip_safe = True,
install_requires = ['setuptools', "six"],
)