forked from SaadBazaz/urdu_python_kernel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 693 Bytes
/
setup.py
File metadata and controls
28 lines (25 loc) · 693 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
26
27
28
from distutils.core import setup
with open('README.rst') as f:
readme = f.read()
import os
setup(
name='universal_python',
version='1.1',
packages=['universal_python',],
description='UniversalPython kernel for Jupyter',
long_description=readme,
author='Saad Bazaz',
author_email='saadbazaz@hotmail.com',
url='https://github.com/UniversalPython/UniversalPython',
install_requires=[
'jupyter_client',
'IPython',
'ipykernel',
'universalpython'
],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
],
)