bonfy / problems

record problems I have met and solved
2 stars 1 forks source link

setup.py #4

Open bonfy opened 7 years ago

bonfy commented 7 years ago

整理下 setup.py

bonfy commented 7 years ago
# coding: utf-8

from setuptools import setup

setup(
    name = "bpic",
    packages = ["bpic"],
    version = "0.0.1",
    description = "bonfy pic tool",
    author = "Bonfy",
    author_email = "foreverbonfy@163.com",
    url = "http://www.bonfy.im",
    # download_url = "",
    keywords = ["pic", "tool"],

    platforms = 'any',
    zip_safe = True,
    include_package_data = True,
    entry_points = {"console_scripts": "bpic = bpic.cli:main"},
    classifiers = [
        "Programming Language :: Python",
        "Programming Language :: Python :: 3",
        "Development Status :: 4 - Beta",
        "Environment :: Other Environment",
        "Intended Audience :: Developers",
        "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
        "Operating System :: OS Independent",
        "Topic :: Software Development :: Libraries :: Python Modules",
        "Topic :: Text Processing :: Linguistic",
        ],
    long_description = """\
Pic tool to upload pic to the cloud and return url

Make you easy to add pic to your markdown file.
"""
)