-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (34 loc) · 1.16 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
# -*- coding: utf-8 -*-
from distutils.core import setup
from setuptools import find_packages
setup(
name='sandstone-nb-term',
version='0.2.4',
author=u'Zebula Sampedro',
author_email='[email protected]',
packages=find_packages(),
include_package_data=True,
url='https://github.com/SandstoneHPC/sandstone-nb-term',
license='MIT, see LICENSE',
description="Sandstone HPC - NBTerm",
long_description=open('DESCRIPTION.rst').read(),
zip_safe=False,
install_requires=[
'sandstone>=0.12.5',
'jupyter',
'bash_kernel',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: Unix',
'Topic :: Software Development :: User Interfaces',
'Topic :: Software Development :: Build Tools',
'Topic :: Text Editors :: Integrated Development Environments (IDE)',
'Topic :: Terminals :: Terminal Emulators/X Terminals',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: JavaScript',
],
)