File: setup.py

package info (click to toggle)
syncplay 1.7.4%2Brepack1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,676 kB
  • sloc: python: 19,824; sh: 32; makefile: 16
file content (65 lines) | stat: -rw-r--r-- 2,158 bytes parent folder | download | duplicates (2)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/usr/bin/env python3

import os
import setuptools

from syncplay import projectURL, version as syncplay_version

def read(fname):
    with open(fname, 'r') as f:
        return f.read()

installRequirements = read('requirements.txt').splitlines() +\
                        read('requirements_gui.txt').splitlines()

setuptools.setup(
    name="syncplay",
    version=syncplay_version,
    author="Syncplay",
    author_email="dev@syncplay.pl",
    description=' '.join([
        'Client/server to synchronize media playback',
        'on mpv/VLC/MPC-HC/MPC-BE on many computers'
    ]),
    long_description=read('README.md'),
    long_description_content_type="text/markdown",
    url=projectURL,
    download_url=projectURL + 'download/',
    packages=setuptools.find_packages(),
    install_requires=installRequirements,
    python_requires=">=3.4",
    entry_points={
        'console_scripts': [
            'syncplay-server = syncplay.ep_server:main',
        ],
        'gui_scripts': [
            'syncplay = syncplay.ep_client:main',
        ]
    },
    include_package_data=True,
    classifiers=[
        "Development Status :: 5 - Production/Stable",
        "Environment :: MacOS X :: Cocoa",
        "Environment :: Win32 (MS Windows)",
        "Environment :: X11 Applications :: Qt",
        "Framework :: Twisted",
        "Intended Audience :: End Users/Desktop",
        "License :: OSI Approved :: Apache Software License",
        "Operating System :: MacOS :: MacOS X",
        "Operating System :: Microsoft :: Windows",
        "Operating System :: POSIX :: Linux",
        "Natural Language :: English",
        "Natural Language :: German",
        "Natural Language :: Italian",
        "Natural Language :: Russian",
        "Natural Language :: Spanish",
        "Programming Language :: Python :: 3",
        "Programming Language :: Python :: 3.4",
        "Programming Language :: Python :: 3.5",
        "Programming Language :: Python :: 3.6",
        "Programming Language :: Python :: 3.7",
        "Programming Language :: Python :: 3.8",
        "Topic :: Internet",
        "Topic :: Multimedia :: Video"
    ],
)