-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·38 lines (32 loc) · 803 Bytes
/
setup.py
File metadata and controls
executable file
·38 lines (32 loc) · 803 Bytes
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
#!/usr/bin/env python
import os.path
try:
from setuptools import setup
except:
from distutils.core import setup
from perproxy import VERSION
#
# Our scripts
SCRIPTS = [
"scripts/PerProxy",
"scripts/perproxy-create-ca",
]
#
# Do it
setup(
name = "PerProxy",
version = VERSION,
packages = [ "perproxy" ],
# Files in package_data must also appear in MANIFEST.in
package_data = { "perproxy" : [
"conf/error_template.html",
"conf/logging.config",
] },
scripts = SCRIPTS,
install_requires=['pyPerspectives >= 0.5'],
author = "Von Welch",
author_email = "von@vwelch.com",
description = "A Perspectives (http://perspectives-project.org/) proxy",
license = "MIT",
url = "https://github.com/von/PerProxy"
)