This repository has been archived by the owner on Jan 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 286
/
setup.py
48 lines (44 loc) · 1.42 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
41
42
43
44
45
46
47
48
#!/usr/bin/python -u
#-*- coding: utf-8 -*-
"""
setup.py
For pypi
"""
from setuptools import setup
def _requires_from_file(filename):
return open(filename).read().splitlines()
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="clubhouse-py",
packages=["clubhouse"],
version="434.1",
license="MIT",
description=("Clubhouse API written in Python. Standalone client included." +
"For reference and education purposes only."),
author="Harold Kim",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/stypr/clubhouse-py",
download_url="https://github.com/stypr/clubhouse-py/archive/v434.tar.gz",
keywords=[
"clubhouse",
"voice-chat",
"clubhouse-client",
"clubhouse-api",
"clubhouse-lib",
],
install_requires=_requires_from_file("requirements.txt"),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
)