-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
executable file
·42 lines (38 loc) · 1.09 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
#!/usr/bin/env python
"""Distutils setup file"""
try:
import ez_setup
ez_setup.use_setuptools()
except: pass
from setuptools import setup
# Metadata
PACKAGE_NAME = "ProxyTypes"
PACKAGE_VERSION = "0.10.0"
PACKAGES = ['peak', 'peak.util']
def get_description():
# Get our long description from the documentation
f = file('README.txt')
lines = []
for line in f:
if not line.strip():
break # skip to first blank line
for line in f:
if line.startswith('.. contents::'):
break # read to table of contents
lines.append(line)
f.close()
return ''.join(lines)
setup(
name=PACKAGE_NAME,
version=PACKAGE_VERSION,
description="General purpose proxy and wrapper types",
long_description = open('README.txt').read(),
long_description_content_type="text/x-rst",
url = "https://github.com/PEAK-Legacy/ProxyTypes#readme",
author="Phillip J. Eby",
author_email="[email protected]",
license="PSF or ZPL",
test_suite = 'test_proxies',
packages = PACKAGES,
namespace_packages = PACKAGES,
)