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
|
|
|
|
|
|
|
|
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 *.css *.js *.swf" % src_directory,
|
|
|
|
"recursive-include %s *.tpl" % src_directory
|
|
|
|
)))
|
|
|
|
|
|
|
|
|
|
|
|
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",
|
|
|
|
long_description=open('README.rst').read(),
|
|
|
|
install_requires=[
|
|
|
|
'cherrypy',
|
|
|
|
'bottle',
|
|
|
|
'clize',
|
2015-09-03 19:45:42 +03:00
|
|
|
'lockfile',
|
2012-05-16 11:15:14 +04:00
|
|
|
],
|
|
|
|
include_package_data=True,
|
|
|
|
dependency_links=[
|
|
|
|
'http://www.subspacefield.org/security/privilege/code/privilege/'
|
|
|
|
],
|
|
|
|
classifiers=[
|
|
|
|
'Programming Language :: Python',
|
|
|
|
"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
|
|
|
],
|
|
|
|
entry_points = {
|
|
|
|
'console_scripts': [
|
2015-09-18 18:36:14 +03:00
|
|
|
'zerobin = zerobin.cmd:main',
|
2012-05-16 11:15:14 +04:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|