-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 694 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 694 Bytes
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
import setuptools
from distutils.core import setup
with open('README') as f:
readme = f.read()
setup(
name='pluto',
version='1.1',
packages=['pluto'],
include_package_data=True,
description='Interactive IPython kernel for Jupyter with a built in Vulkan graphics engine',
long_description=readme,
author='Nathan Morrical',
author_email='natemorrical@gmail.com',
url='https://github.com/n8vm/Pluto',
install_requires=[
'jupyter_client', 'IPython', 'ipykernel', 'numpy'
],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
)