forked from sorz/asstosrt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (30 loc) · 921 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
30
31
32
33
#!/usr/bin/env python
from setuptools import setup
with open('README.rst') as readme:
long_description = readme.read()
setup(
name='asstosrt',
version='0.1.6',
description='A tool that convert ASS/SSA subtitle to SRT format',
author='XiErCh',
author_email='[email protected]',
url='https://github.com/sorz/asstosrt/',
py_modules=['batch'],
packages=['asstosrt'],
data_files=[('', ['README.rst'])],
install_requires=['setuptools'],
entry_points="""
[console_scripts]
asstosrt = batch:main
""",
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Text Processing',
],
long_description=long_description
)