forked from mitsuhiko/phpserialize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (36 loc) · 1.06 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
import os
from setuptools import setup
def get_docs():
result = []
in_docs = False
f = open(os.path.join(os.path.dirname(__file__), 'phpserialize.py'))
try:
for line in f:
if in_docs:
if line.lstrip().startswith(':copyright:'):
break
result.append(line[4:].rstrip())
elif line.strip() == 'r"""':
in_docs = True
finally:
f.close()
return '\n'.join(result)
setup(
name='phpserialize',
author='Armin Ronacher',
author_email='armin.ronacher@active-4.com',
version='1.3',
url='http://github.com/mitsuhiko/phpserialize',
py_modules=['phpserialize'],
description='a port of the serialize and unserialize '
'functions of php to python.',
long_description=get_docs(),
zip_safe=False,
test_suite='tests',
classifiers=[
'License :: OSI Approved :: BSD License',
'Programming Language :: PHP',
'Programming Language :: Python',
'Programming Language :: Python :: 3'
]
)