12345678910111213141516171819202122232425262728293031323334 |
- #!/usr/bin/env python
- from __future__ import print_function
- import os
- import sys
- from setuptools import setup
- if sys.argv[-1] == "publish":
- os.system("python setup.py sdist upload")
- os.system("python setup.py bdist_wheel upload")
- print("You probably want to also tag the version now:")
- print(" git tag -a VERSION -m 'version VERSION'")
- print(" git push --tags")
- sys.exit()
- setup(
- name="noteshrink",
- version="0.1.1",
- author="Matt Zucker",
- description="Convert scans of handwritten notes to beautiful, compact PDFs",
- url="https://github.com/mzucker/noteshrink",
- py_modules=["noteshrink"],
- install_requires=[
- "numpy>=1.1.0",
- "scipy",
- "pillow",
- ],
- entry_points="""
- [console_scripts]
- noteshrink=noteshrink:main
- """,
- )
|