-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (27 loc) · 897 Bytes
/
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
from setuptools import setup
setup(
name='magic_call',
version='0.0.0',
package_dir={'': 'src'},
packages=['magic_call'],
author='Matthias Geier',
author_email='[email protected]',
description='Python package for passing some text to a chain of external '
'programs and getting the result(s) back',
long_description=open('README.rst').read(),
license='MIT',
keywords='IPython LaTeX'.split(),
url='https://magic_call.readthedocs.io/',
platforms='any',
classifiers=[
'Framework :: IPython',
'Framework :: Jupyter',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Utilities',
],
zip_safe=True,
)