-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
38 lines (36 loc) · 1.18 KB
/
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
30
31
32
33
34
35
36
37
38
from setuptools import setup, find_packages
import os
version = '0.0.1'
here = os.path.abspath(os.path.dirname(__file__))
long_description = open(os.path.join(here, 'README.txt')).read()
setup(name='videoShot',
version=version,
description='Tool to segmentation video',
long_description=long_description,
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Utilities'
],
keywords='video segmentation',
author='Dyogo Ribeiro Veiga, Fabio Duncan de Souza, Whanderley Souza Freitas',
url='http://github.com/Dyogo/videoShot',
license='MIT',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
'PIL',
'specloud',
'should-dsl',
],
entry_points="""
[console_scripts]
videoShot = videoShot:vs
""",
)