-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
30 lines (26 loc) · 992 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
from distutils.core import setup
README = open('README.md', 'r').read()
setup(
name='jostedal',
version='0.1.0',
packages=['jostedal'],
provides=['jostedal'],
requires=['Twisted'],
author='Pexip AS',
url='http://www.pexip.com',
license='MIT',
description="TURN and STUN library",
classifiers=[
'Programming Language :: Python',
'Framework :: Twisted',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Internet',
'Topic :: System :: Networking',
'Topic :: Software Development :: Libraries :: Python Modules',
],
long_description=README
)