-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
36 lines (32 loc) · 1.14 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
import io
import sys
from setuptools import find_packages, setup
with io.open('calysto_hy/version.py', encoding="utf-8") as fid:
for line in fid:
if line.startswith('__version__'):
__version__ = line.strip().split()[-1][1:-1]
break
with open('README.md') as f:
readme = f.read()
setup(name='calysto_hy',
version=__version__,
description='A Hy kernel for Jupyter based on MetaKernel',
long_description=readme,
author='Douglas Blank',
author_email='[email protected]',
url="https://github.com/Calysto/calysto_hy",
install_requires=["metakernel", "hy", "toolz"],
dependency_links=[
"git+https://github.com/ekaschalk/jedhy.git"
],
packages=find_packages(include=["calysto_hy", "calysto_hy.*"]),
package_data={'calysto_hy': ["images/*.png", "modules/*.ss"]},
classifiers=[
'Framework :: IPython',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 2',
'Programming Language :: Lisp',
'Topic :: System :: Shells',
]
)