Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for setuptools/pip #305

Closed
kellerkind opened this issue Nov 30, 2015 · 2 comments
Closed

Support for setuptools/pip #305

kellerkind opened this issue Nov 30, 2015 · 2 comments

Comments

@kellerkind
Copy link

Script should be installable via setup.py. Example attached:

"""
Universal Office Converter - Convert between any document format supported by LibreOffice/OpenOffice.

See:
https://github.com/dagwieers/unoconv
"""

# Always prefer setuptools over distutils
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path

here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.adoc'), encoding='utf-8') as f:
    long_description = f.read()

setup(name = "unoconv",
      version = "0.7",
      author = "Dag Wieers",
      author_email = "dag.wieers@gmail.com",
      url = "https://github.com/dagwieers/unoconv",
      description = "Universal Office Converter - Convert between any document format supported by LibreOffice/OpenOffice.",
      scripts = ["unoconv"],
      # See https://pypi.python.org/pypi?%3Aaction=list_classifiers
      classifiers = [
        'Development Status :: 6 - Mature',
        'Intended Audience :: Developers',
        'Intended Audience :: System Administrators',
        'Intended Audience :: Education',
        'License :: OSI Approved :: GNU General Public License (GPL)',
        'Programming Language :: Python',
        'Programming Language :: Python :: 2',
        'Topic :: Documentation',      ]
)
@dagwieers dagwieers added this to the Release 0.8 milestone Jan 19, 2016
@dagwieers
Copy link
Member

Agreed. Can you provide a pull request instead ?
This will ensure you are credited for this improvement.

@regebro
Copy link
Member

regebro commented Feb 19, 2019

This is solved.

@regebro regebro closed this as completed Feb 19, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants