Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/smc_sagews/setup.py
Views: 274
1
def readme():
2
with open('README.md') as f:
3
return f.read()
4
5
6
from setuptools import setup
7
8
setup(
9
name='smc_sagews',
10
version='1.1',
11
description='CoCalc Worksheets',
12
long_description=readme(),
13
url='https://github.com/sagemathinc/cocalc',
14
author='SageMath, Inc.',
15
author_email='[email protected]',
16
license='GPLv3+',
17
packages=['smc_sagews'],
18
install_requires=[
19
'markdown2',
20
'ansi2html',
21
'ushlex',
22
'six',
23
'jupyter_client<7', # not compatible, see https://github.com/sagemathinc/cocalc/issues/5715
24
],
25
zip_safe=False,
26
classifiers=[
27
'License :: OSI Approved :: GPLv3',
28
'Programming Language :: Python :: 2.7',
29
'Programming Language :: Python :: 3.6',
30
'Programming Language :: Python :: 3.7',
31
'Topic :: Mathematics :: Server',
32
],
33
keywords='server mathematics cloud',
34
test_suite='nose.collector',
35
tests_require=['nose'])
36
37