def readme():
with open('README.md') as f:
return f.read()
from setuptools import setup
setup(
name='smc_sagews',
version='1.2',
description='CoCalc Worksheets',
long_description=readme(),
url='https://github.com/sagemathinc/cocalc',
author='SageMath, Inc.',
author_email='[email protected]',
license='GPLv3+',
packages=['smc_sagews'],
install_requires=[
'markdown2',
'ansi2html',
'ushlex',
'six',
'jupyter_client<7',
],
zip_safe=False,
classifiers=[
'License :: OSI Approved :: GPLv3',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.12',
'Topic :: Mathematics :: Server',
],
keywords='server mathematics cloud',
test_suite='nose.collector',
tests_require=['nose'])