-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 791 Bytes
/
setup.py
File metadata and controls
30 lines (28 loc) · 791 Bytes
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
import os
from setuptools import setup, find_packages
root_dir = os.path.dirname(os.path.realpath(__file__))
with open(os.path.join(root_dir, "VERSION"), 'r') as version_file:
version = version_file.read().strip()
setup(
name="matrix-leaf",
version=version,
description="A Matrix (matrix.org) client",
author="SimonKLB",
author_email="simonkollberg@gmail.com",
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"Programming Language :: Python :: 3.5",
],
packages=find_packages(exclude=[]),
install_requires=[
"matrix-client",
"urwid"
],
entry_points={
"console_scripts": [
"matrix-leaf = leaf.__main__:main"
],
},
)