-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
57 lines (46 loc) · 1.62 KB
/
Copy pathsetup.py
File metadata and controls
57 lines (46 loc) · 1.62 KB
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
import os
from setuptools import setup
BASEDIR = os.path.abspath(os.path.dirname(__file__))
def package_files(directory):
paths = []
for (path, directories, filenames) in os.walk(directory):
for filename in filenames:
paths.append(os.path.join('..', path, filename))
return paths
def get_version():
""" Find the version of the package"""
version_file = os.path.join(BASEDIR, 'phonematcher', 'version.py')
major, minor, build, alpha = (None, None, None, None)
with open(version_file) as f:
for line in f:
if 'VERSION_MAJOR' in line:
major = line.split('=')[1].strip()
elif 'VERSION_MINOR' in line:
minor = line.split('=')[1].strip()
elif 'VERSION_BUILD' in line:
build = line.split('=')[1].strip()
elif 'VERSION_ALPHA' in line:
alpha = line.split('=')[1].strip()
if ((major and minor and build and alpha) or
'# END_VERSION_BLOCK' in line):
break
version = f"{major}.{minor}.{build}"
if alpha and int(alpha) > 0:
version += f"a{alpha}"
return version
PKG_NAME="phonematcher"
extra_files = package_files(PKG_NAME)
setup(
name=PKG_NAME,
version=get_version(),
packages=[PKG_NAME],
include_package_data=True,
package_data={'': extra_files},
# install_requires=required('requirements/requirements.txt'),
install_requires=["rapidfuzz"],
url='https://github.com/TigreGotico/phonematcher',
license='',
author='JarbasAi',
author_email='jarbasai@mailfence.com',
description=''
)