-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (19 loc) · 759 Bytes
/
setup.py
File metadata and controls
23 lines (19 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
from distutils.core import setup
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(name='GeetControl',
version='1.0',
description='Control Your Desktop Remotely',
author='Itay Bachar',
author_email='itay.bachar01@gmail.com',
url='https://github.com/itaybachar',
package_dir={"":"geetcontrol"},
packages=["backend","backend.response", "backend.router","backend.controller","frontend.public"],
package_data={"frontend.public":["pages/*.html","res/*.png","scripts/*.js","styles/*.css"]},
include_package_data=True,
entry_points={
'console_scripts': ['geetControl = backend.main:main']
},
install_requires=required,
)