Skip to content

Commit 7b3f677

Browse files
author
tailor
committed
[project @ Add distutils support]
1 parent ad5f024 commit 7b3f677

3 files changed

Lines changed: 27 additions & 0 deletions

File tree

MANIFEST.in

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
include COPYING
2+
recursive-include examples README *.py
3+
recursive-include test runtests *.py
4+
recursive-include docs *.css *.html

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[sdist]
2+
force_manifest=1

setup.py

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
from distutils.core import setup
2+
3+
try:
4+
f = open('COPYING', 'r')
5+
copying = f.read()
6+
finally:
7+
f.close()
8+
9+
setup(
10+
name='python-openid',
11+
version='1.0-beta1',
12+
description='Python OpenID Library',
13+
url='http://openid.schtuff.com',
14+
packages=['openid',
15+
'openid.consumer',
16+
'openid.server',
17+
'openid.stores',
18+
],
19+
license=copying,
20+
)
21+

0 commit comments

Comments
 (0)