-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
executable file
·62 lines (60 loc) · 1.72 KB
/
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
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
#!/usr/bin/env python3
import pip
pip.main(['install','-r','requirements.txt'])#
#from setuptools import setup, find_packages
#import mira
#import mirapie
#import os
#
#
#def read(*names):
# values = dict()
# extensions = ['.txt', '.rst', '.md']
# for name in names:
# value = ''
# for extension in extensions:
# filename = name + extension
# if os.path.isfile(filename):
# value = open(name + extension).read()
# break
# values[name] = value
# return values
#
#long_description = """
#%(README)s
#
#News
#====
#
#%(CHANGES)s
#
#""" % read('README', 'CHANGES')
#
#setup(
# name = 'mirapie',
# version = mirapie.__version__,
# description = 'Interference removal algorithm for multitrack live recordings via command line',
# long_description = long_description,
# classifiers = [
# "Development Status :: 4 - Beta"
# "Environment :: Console",
# "Intended Audience :: Sound Engineers",
# "Intended Audience :: Developers",
# "Programming Language :: Python :: 3.5",
# "Topic :: Music Processing",
# "License :: OSI Approved :: GPL3 License",
# ],
# keywords = 'interference reduction mira source separation python',
# author = 'Diego Di Carlo',
# author_email = '[email protected]',
# maintainer = 'Diego Di carlo',
# maintainer_email = '[email protected]',
# url = 'https://github.com/Chutlhu/mirapie',
# license = 'GPL3',
# packages = find_packages(),
# entry_points = {
# 'console_scripts': [
# 'mirapie = mirapie:command_line_runner',
# ]
# }
#)