-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (27 loc) · 811 Bytes
/
setup.py
File metadata and controls
31 lines (27 loc) · 811 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
import os
from setuptools import find_packages, setup
here = os.path.dirname(os.path.abspath(__file__))
version_ns = {}
with open(os.path.join(here, "faculty_sync", "version.py")) as f:
exec(f.read(), {}, version_ns)
setup(
name="faculty_sync",
version=version_ns["version"],
description="Faculty Platform file synchronizer",
author="Faculty",
author_email="opensource@faculty.ai",
packages=find_packages(),
entry_points={"console_scripts": ["faculty-sync=faculty_sync:run"]},
install_requires=[
"faculty",
"daiquiri",
"paramiko",
"watchdog",
"semantic_version",
"prompt_toolkit>=2.0,<3.0",
],
classifiers=[
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
],
)