Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download
Views: 39553
1
def readme():
2
with open('README.md') as f:
3
return f.read()
4
5
from setuptools import setup
6
7
setup(
8
name = 'smc_sagews',
9
version = '1.0',
10
description = 'CoCalc Worksheets',
11
long_description = readme(),
12
url = 'https://github.com/sagemathinc/cocalc',
13
author = 'SageMath, Inc.',
14
author_email = '[email protected]',
15
license = 'GPLv3+',
16
packages = ['smc_sagews'],
17
install_requires = ['markdown2', 'ansi2html', 'ushlex'],
18
zip_safe = False,
19
classifiers = [
20
'License :: OSI Approved :: GPLv3',
21
'Programming Language :: Python :: 2.7',
22
'Topic :: Mathematics :: Server',
23
],
24
keywords = 'server mathematics cloud',
25
test_suite = 'nose.collector',
26
tests_require = ['nose']
27
)
28
29