2 Star 0 Fork 0

mirrors_anthonyfok/stdeb

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.08 KB
一键复制 编辑 原始数据 按行查看 历史
Andrew Straw 提交于 2015-02-18 22:42 . bump version for release
from distutils.core import setup
import codecs
with codecs.open('README.rst', encoding='utf-8') as file:
long_description = file.read()
setup(name='stdeb',
# Keep version in sync with stdeb/__init__.py and install section
# of README.rst.
version='0.8.5',
author='Andrew Straw',
author_email='[email protected]',
description='Python to Debian source package conversion utility',
long_description=long_description,
license='MIT',
url='http://github.com/astraw/stdeb',
packages=['stdeb','stdeb.command'],
scripts=['scripts/py2dsc',
'scripts/py2dsc-deb',
'scripts/pypi-download',
'scripts/pypi-install',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
],
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_anthonyfok/stdeb.git
[email protected]:mirrors_anthonyfok/stdeb.git
mirrors_anthonyfok
stdeb
stdeb
master

搜索帮助