-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (31 loc) · 944 Bytes
/
setup.py
File metadata and controls
33 lines (31 loc) · 944 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
31
32
from setuptools import setup, find_packages
import os
setup(
name = "pyhackeriet",
version = "0.1.2",
author = "krav",
description = ("Advanced Hackerspace Building Framework"),
license = "WTFPL",
packages=find_packages(),
scripts=["bin/"+a for a in os.listdir("bin")],
include_package_data=True,
install_requires=[
'flask',
'paho-mqtt',
'psycopg2',
'pychromecast',
'pynacl',
'sqlalchemy',
'stripe',
'matrix_client',
],
entry_points = {
'console_scripts': [
'httpbridge=hackeriet.web.httpbridge:main',
'chromecast-snoop=hackeriet.chromecast:snoop',
'brusweb=hackeriet.web.brusweb:main',
'cardreaderd=hackeriet.cardreaderd:main',
'doorcontrold=hackeriet.doorcontrold:main'
]
}
)