-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
58 lines (52 loc) · 1.67 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
55
56
57
58
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='torahcodes',
version='1.0.10',
author='torahcodes',
author_email='',
description='An understandable multilanguaje and multithreading bible codes . Study the Torah as never before Bible Codes python library . An understandable multilanguaje and multithreading bible codes . Study the Torah as never before',
long_description=long_description,
long_description_content_type='text/markdown',
url='',
#packages=find_packages(exclude=['tests']),
packages=[
'torahcodes',
'torahcodes.modules',
'torahcodes.resources.func',
'torahcodes.resources.data',
],
package_data={
'torahcodes.resources.data': ['*'],
},
include_package_data=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.9'
],
keywords='torahcodes',
python_requires='>=3.6.0',
install_requires=[
'configparser',
'lxml',
'python-hebrew-numbers',
'deep_translator',
'requests',
],
entry_points={
'console_scripts': [
'tbc-cli=torahcodes.TBC:main'
],
},
project_urls={
'Source': 'https://github.com/pedroelbanquero/torahcodespython',
},
)