-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (41 loc) · 1.16 KB
/
setup.py
File metadata and controls
47 lines (41 loc) · 1.16 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
from setuptools import setup, find_packages
import os
root_dir = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(root_dir, 'README.rst'), encoding='utf8') as f:
long_description = f.read()
requirements=[
'Click',
'pexpect==4.3.1',
'ptyprocess==0.5.2',
'future',
'ipykernel'
]
test_requirements =[
'nose'
]
setup(
name='sc_kernel',
version='0.0.2',
description='A basic IPython kernel REPLwrapper for SuperCollider',
long_description=long_description,
url='',
author='bsnacks000',
classifiers=[
'Development Status :: 3 - Alpha'
'Intended Audience :: SuperCollider users, Developers'
'License :: MIT License'
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
],
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
include_package_data=True,
install_requires=requirements,
entry_points={
'console_scripts':[
'install_kernel=sc_kernel.install:main'
]
},
test_suite='nose.collector',
tests_require=test_requirements
)