-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
54 lines (48 loc) · 1.44 KB
/
setup.py
File metadata and controls
54 lines (48 loc) · 1.44 KB
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# setup.py
#
"""Setup file for ardour2fxp."""
from os.path import join
from setuptools import setup
def read(*paths):
with open(join(*paths), encoding='utf-8') as fp:
return fp.read()
classifiers = """
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: End Users/Desktop
License :: OSI Approved :: MIT License
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Operating System :: POSIX :: Linux
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3 :: Only
Topic :: Multimedia :: Sound/Audio
Topic :: Utilities
"""
setup(
name='ardour2fxp',
version="0.2.0",
description=read('README.rst').splitlines()[3],
long_description="\n".join(read('README.rst').splitlines()[3:]),
author="Christopher Arndt",
author_email="info@chrisarndt.de",
url="https://github.com/SpotlightKid/ardour2fxp",
py_modules=["ardour2fxp", "fxp2ardour"],
install_requires=[],
entry_points={
"console_scripts": [
"ardour2fxp = ardour2fxp:main",
"fxp2ardour = fxp2ardour:main"
]
},
classifiers=[c.strip() for c in classifiers.splitlines()
if c.strip() and not c.startswith('#')]
)