-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
29 lines (27 loc) · 846 Bytes
/
setup.py
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
from setuptools import setup, find_packages
import os
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name='sevimon',
version='0.2',
license='LICENSE',
packages=[
"sevimon",
"sevimon.lib",
"sevimon.lib.locale",
],
package_dir={'sevimon': '', 'sevimon.lib': 'lib', 'sevimon.lib.locale': 'lib/locale'},
package_data={'': ['*.txt', '*.md']},
entry_points = {
'console_scripts': [
'sevicfg=sevimon.sevicfg:main',
'sevimon=sevimon.sevimon:main',
'sevistat=sevimon.sevistat:main',
],
},
url='https://github.com/ioctl-user/sevimon',
description='Self Video Monitoring tool for facial muscles.',
keywords='sevimon face emotion tension stress muscles wrinkles',
install_requires=requirements,
)