forked from Alice-ArtsLab/mosaicode-c-opencv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·49 lines (42 loc) · 1.59 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
# -*- coding: utf-8 -*-
from glob import glob
DISTUTILS_DEBUG = "True"
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
config = {}
config['classifiers'] = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: JavaScript',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Code Generators',
]
setup(name='mosaicode-lib-c-opencv',
install_requires=['mosaicode'],
python_requires='>=2.7',
tests_require=[],
test_suite='',
version='1.0.0.dev1',
packages=find_packages(exclude=["tests.*", "tests"]),
scripts=[],
description='Computer Music Programming Tool',
author='ALICE: Arts Lab in Interfaces, Computers, and Experiences',
author_email='[email protected]',
maintainer="ALICE: Arts Lab in Interfaces, Computers, and Experiences",
maintainer_email="[email protected]",
license="GNU GPL3",
url='https://mosaicode.github.io/',
data_files=[
('/usr/share/mosaicode/extensions/c-opencv/images', glob("files/images/*")),
('/usr/share/mosaicode/extensions/c-opencv/examples', glob("files/examples/*")),
('/usr/share/mosaicode/extensions/c-opencv/databases', glob("files/databases/*"))
],
**config
)