-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
32 lines (26 loc) · 941 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
from setuptools import setup, find_packages
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="swapsub",
version="2.0.2",
author="cybytess",
author_email="p2002817@outlook.com",
description="a subtitle file format converter",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/cybytess/swapsub",
packages=find_packages(),
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3 ',
'Topic :: Multimedia :: Sound/Audio',
'Topic :: Multimedia :: Video',
'Intended Audience :: Customer Service',
'Intended Audience :: Developers',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS',
'Operating System :: Unix'
]
)