forked from mitsuhiko/speaklater
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
39 lines (37 loc) · 1.11 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
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
def get_docs():
result = []
in_docs = False
f = open(os.path.join(os.path.dirname(__file__), 'speaklater.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='speaklater',
author='Armin Ronacher',
author_email='[email protected]',
version='1.3',
url='http://github.com/mitsuhiko/speaklater',
py_modules=['speaklater'],
description='implements a lazy string for python useful for use with gettext',
long_description=get_docs(),
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: BSD License',
'Topic :: Software Development :: Internationalization',
'Programming Language :: Python'
]
)