-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
executable file
·49 lines (46 loc) · 1.26 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/usr/bin/env python
import os
import sys
from setuptools import setup
os.system('make rst')
try:
readme = open('README.rst').read()
except FileNotFoundError:
# fallback when installing from source package
readme = ''
setup(
name='ipynbcompress',
version=open(os.path.join('ipynbcompress', 'VERSION')).read().strip(),
description='Compress images in IPython/Jupyter notebooks',
long_description=readme,
author='Arve Seljebu',
author_email='[email protected]',
url='https://github.com/arve0/ipynbcompress',
packages=[
'ipynbcompress',
],
package_dir={'ipynbcompress': 'ipynbcompress'},
package_data={'ipynbcompress': ['VERSION']},
scripts=[
'scripts/ipynb-compress'
],
include_package_data=True,
install_requires=[
'Pillow',
'jsonschema',
'ipython',
'click',
'hurry.filesize'
],
license='MIT',
zip_safe=False,
keywords='ipynbcompress',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
],
)