Advertisement
9r3nXPaRTa

Clubhouse-py/setup.py

Apr 12th, 2021
1,143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.47 KB | None | 0 0
  1. #!/usr/bin/python -u
  2. #-*- coding: utf-8 -*-
  3. """
  4.    setup.py
  5.    For pypi
  6. """
  7. from setuptools import setup
  8.  
  9. def _requires_from_file(filename):
  10.     return open(filename).read().splitlines()
  11.  
  12.  
  13. with open("README.md", "r") as fh:
  14.     long_description = fh.read()
  15.  
  16. setup(
  17.     name="clubhouse-py",
  18.     packages=["clubhouse"],
  19.     version="304.0.1",
  20.     license="MIT",
  21.     description=("Clubhouse API written in Python. Standalone client included." +
  22.         "For reference and education purposes only."),
  23.     author="Harold Kim",
  24.     author_email="root@stypr.com",
  25.     long_description=long_description,
  26.     long_description_content_type="text/markdown",
  27.     url="https://github.com/stypr/clubhouse-py",
  28.     download_url="https://github.com/stypr/clubhouse-py/archive/304.0.1.tar.gz",
  29.     keywords=[
  30.         "clubhouse",
  31.         "voice-chat",
  32.         "clubhouse-client",
  33.         "clubhouse-api",
  34.         "clubhouse-lib",
  35.     ],
  36.     install_requires=_requires_from_file("requirements.txt"),
  37.     classifiers=[
  38.         "Development Status :: 5 - Production/Stable",
  39.         "Intended Audience :: Developers",
  40.         "License :: OSI Approved :: MIT License",
  41.         "Operating System :: MacOS",
  42.         "Operating System :: Microsoft :: Windows :: Windows 10",
  43.         "Programming Language :: Python :: 3",
  44.         "Programming Language :: Python :: 3.7",
  45.         "Programming Language :: Python :: 3.8",
  46.         "Programming Language :: Python :: 3.9",
  47.     ],
  48. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement