-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
54 lines (50 loc) · 1.59 KB
/
setup.py
File metadata and controls
54 lines (50 loc) · 1.59 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
from setuptools import setup, convert_path
main_ns = {}
with open(convert_path('restmagic/version.py')) as ver_file:
exec(ver_file.read(), main_ns)
with open(convert_path('README.rst')) as readme_file:
long_description = readme_file.read()
setup(
name='restmagic',
version=main_ns['__version__'],
packages=['restmagic'],
description='HTTP REST magic for IPython',
long_description=long_description,
long_description_content_type='text/x-rst',
author='b3b',
author_email='ash.b3b@gmail.com',
install_requires=[
'ipython>=1.0',
'requests-toolbelt>=0.8.0',
'jsonpath-rw>=1.4.0',
'lxml>=4.4.0',
],
extras_require={
'dev': [
'jupytext>=1.7.1',
],
},
url='https://github.com/b3b/ipython-restmagic',
project_urls={
'Changelog': 'https://github.com/b3b/ipython-restmagic/blob/master/CHANGELOG.rst',
'Examples': (
'https://herethere.me/restmagic/examples/usage.html'
),
},
# https://pypi.org/classifiers/
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Framework :: IPython',
'Framework :: Jupyter',
'Topic :: Internet :: WWW/HTTP',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
keywords='magic rest http requests ipython jupyter',
license='MIT',
zip_safe=False,
)