forked from nattofriends/python-ass
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
29 lines (27 loc) · 945 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
with open("README.md", 'r') as fh:
long_description = fh.read()
setup(
name='ass',
version="0.5.4",
description="A library for parsing and manipulating Advanced SubStation Alpha subtitle files.",
long_description=long_description,
long_description_content_type="text/markdown",
author="Tony Young",
# author_email="[email protected]",
keywords="ass subtitle substation alpha",
packages=['ass'],
url="http://github.com/chireiden/python-ass",
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Multimedia :: Video',
'Topic :: Software Development :: Libraries',
'Topic :: Text Processing :: Markup',
],
install_requires=["setuptools"],
zip_safe=True,
)