1
0
mirror of https://github.com/Tygs/0bin.git synced 2023-08-10 21:13:00 +03:00
0bin/setup.py

44 lines
1.2 KiB
Python
Raw Normal View History

2012-05-16 11:15:14 +04:00
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# vim: ai ts=4 sts=4 et sw=4 nu
import os
2013-06-23 18:12:47 +04:00
import zerobin
2012-05-16 11:15:14 +04:00
from setuptools import setup, find_packages
2020-08-12 18:30:39 +03:00
src_directory = "zerobin"
open("MANIFEST.in", "w").write(
"\n".join(
(
"include *.rst *.tx",
"recursive-include %s *.png *.jpg *.gif *.ico" % src_directory,
"recursive-include %s *.tpl" % src_directory,
)
)
)
2012-05-16 11:15:14 +04:00
setup(
name="zerobin",
2013-06-23 18:12:47 +04:00
version=zerobin.__version__,
2012-05-16 11:15:14 +04:00
packages=find_packages(exclude=["libs", "libs.*"]),
author="Sam et Max",
author_email="lesametlemax@gmail.com",
description="An client side encrypted pastebin",
2020-08-12 18:30:39 +03:00
long_description=open("README.rst").read(),
install_requires=["cherrypy", "bottle", "clize", "lockfile",],
2012-05-16 11:15:14 +04:00
include_package_data=True,
classifiers=[
2020-08-12 18:30:39 +03:00
"Programming Language :: Python",
2012-05-16 11:15:14 +04:00
"Intended Audience :: Information Technology",
"License :: OSI Approved :: zlib/libpng License",
"Natural Language :: English",
"Programming Language :: Python :: 2.7",
2015-05-10 20:47:59 +03:00
"Programming Language :: Python :: 3.4",
2012-05-16 11:15:14 +04:00
],
2020-08-12 18:30:39 +03:00
entry_points={"console_scripts": ["zerobin = zerobin.cmd:main",]},
2012-05-16 11:15:14 +04:00
)