forked from jnorton001/pycaption-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 767 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (24 loc) · 767 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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
README_PATH = os.path.join(os.path.abspath(os.path.dirname(__file__)),
'README.md')
dependencies = [
'pycaption-mwx'
]
setup(
name='pycaption-cli-mwx',
version='0.1',
description='Command line caption conversion',
author='MWX Limited',
author_email='mwxltd@gmail.com',
url='https://github.com/mwx-limited/pycaption-cli-mwx',
install_requires=dependencies,
dependency_links = [
'git+https://github.com/mwx-limited/pycaption-mwx#egg=pycaption-mwx-1.0.0'
],
packages=find_packages(),
include_package_data=True,
entry_points=dict(
console_scripts=['pycaption=pycapcli.caption_converter:main']),
)