-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 960 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 960 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import find_packages, setup
setup(
name='beatitud-scriptures',
version='4.0.0',
author='Antoine Rose',
author_email='antoine_rose@hotmail.fr',
packages=find_packages(exclude=("tests",)),
include_package_data=True,
install_requires=open("./requirements.pip").readlines(),
license='MIT',
description='bible-ref-py is a python library implemented by Beatitud Developers, '
'built on top of python-scriptures library, '
'initially implemented by David Davis (Copyright (c) 2010-2015). It is a Python '
'package and regular expression library for validating, extracting, and normalizing '
'biblical references from text.',
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
url="https://github.com/beatitud/bible-ref-py/",
keywords=['bible', 'ref', 'parser', 'catholic', 'protestant'],
)