-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
59 lines (49 loc) · 1.45 KB
/
setup.py
File metadata and controls
59 lines (49 loc) · 1.45 KB
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
49
50
51
52
53
54
55
56
57
58
59
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
import clubhouse_lib
def read(*names):
values = dict()
extensions = [".txt", ".rst"]
for name in names:
value = ""
for extension in extensions:
filename = name + extension
if os.path.isfile(filename):
value = open(name + extension).read()
break
values[name] = value
return values
long_description = """
%(README)s
News
====
%(CHANGES)s
""" % read(
"README", "CHANGES"
)
setup(
name="clubhouse-lib",
version=clubhouse_lib.__version__,
description="The unofficial Python client library for the Clubhouse API.",
long_description=long_description,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Bug Tracking",
],
keywords="clubhouse clubhouse-lib clubhouse-api",
author="Hunter H",
author_email="huntrar@gmail.com",
maintainer="Hunter H",
maintainer_email="huntrar@gmail.com",
url="https://github.com/huntrar/python-clubhouse-lib",
license="MIT",
packages=find_packages(),
install_requires=["requests"],
)