Skip to content

Commit

Permalink
Change directory structure
Browse files Browse the repository at this point in the history
  • Loading branch information
stypr committed Feb 21, 2021
1 parent 1f8c517 commit 4fab0c3
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import keyboard
from rich.table import Table
from rich.console import Console
from clubhouse import Clubhouse
from clubhouse.clubhouse import Clubhouse

# Set some global variables
try:
Expand Down
Empty file added clubhouse/__init__.py
Empty file.
File renamed without changes.
17 changes: 9 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,19 @@
setup.py
For pypi
"""
from distutils.core import setup
with open("README.md", "r", encoding="utf-8") as fh:
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-py"],
version="304",
version="304.0.0",
license="MIT",
description=("Clubhouse API written in Python. Standalone client included." +
"For reference and education purposes only."),
Expand All @@ -28,11 +33,7 @@
"clubhouse-api",
"clubhouse-lib",
],
install_requires=[
"keyboard",
"requests",
"rich",
],
install_requires=_requires_from_file("requirements.txt"),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
Expand Down

0 comments on commit 4fab0c3

Please sign in to comment.