-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
70 lines (44 loc) · 1.32 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# vim: ai ts=4 sts=4 et sw=4 nu
import os
import zerobin
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",
version=zerobin.__version__,
packages=find_packages(exclude=["libs", "libs.*"]),
author="Sam et Max",
author_email="[email protected]",
description="An client side encrypted pastebin",
long_description=open('README.rst').read(),
install_requires=[
'cherrypy',
'bottle',
'clize',
'privilege'
],
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",
],
entry_points = {
'console_scripts': [
'zerobin = zerobin.routes:main',
]
}
)