-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 979 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 979 Bytes
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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name='pyuhmegle',
version='1.07',
description='Python API for Uhmegle webchat',
long_description='Python API for Uhmegle webchat. \
Usage: https://github.com/holdentheplanet/pyuhmegle',
author='Holden Moore',
author_email='holdenchristianmoore@gmail.com',
url='https://github.com/holdentheplanet',
license='MIT',
packages=[ 'pyuhmegle' ],
install_requires=[ 'mechanize' ],
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Topic :: Communications :: Chat',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Topic :: Internet :: WWW/HTTP :: Browsers'
],
zip_safe=False)