-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
34 lines (27 loc) · 923 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
33
34
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open("README.rst") as file:
long_description = file.read()
setup(
name="python-omegle",
version="1.1.6",
url="https://github.com/coal0/python-omegle",
author="coal0",
author_email="[email protected]",
description="A simple Python API for the Omegle text chat service",
long_description=long_description,
long_description_content_type="text/x-rst",
keywords="omegle chat webchat api",
classifiers=(
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Communications :: Chat"
),
packages=["python_omegle"],
install_requires=["requests"],
)