-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
54 lines (47 loc) · 1.55 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
42
43
44
45
46
47
48
49
50
51
52
53
54
from setuptools import setup,find_packages
import os
import re
def read(*names):
values = []
for filename in names:
if os.path.isfile(filename):
try:
with open(filename) as fd:
values.append(fd.read())
except:
values.append('')
else:
values.append('')
return values
long_description = """{0}
News
====
{1}
""".format(*read('README.rst', 'CHANGES.rst'))
def get_version(pkg):
path = os.path.join(os.path.dirname(__file__),pkg,'__init__.py')
with open(path) as fh:
m = re.search(r'^__version__\s*=\s*[\'"]([^\'"]+)[\'"]',fh.read(),re.M)
if m:
return m.group(1)
raise RuntimeError("Unable to find __version__ string in %s." % path)
setup(name='python-textops',
version=get_version('textops'),
description='Python text operations module',
long_description=long_description,
classifiers=[
"Intended Audience :: Developers",
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 2.6",
],
keywords='textops',
url='https://github.com/elapouya/python-textops',
author='Eric Lapouyade',
author_email='[email protected]',
license='LGPL 2.1',
packages=find_packages(),
install_requires = ['Sphinx', 'sphinxcontrib-napoleon', 'addicted', 'python-dateutil', 'python-slugify'],
eager_resources = ['docs'],
zip_safe=False)