-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (22 loc) · 869 Bytes
/
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
from setuptools import setup, find_packages
from os import path
with open(path.join(path.abspath(path.dirname(__file__)), "README.md"), encoding="utf-8") as f:
readme_description = f.read()
def read_requirements(filename):
with open(filename, "r", encoding="utf-8") as fp:
return fp.read().strip().splitlines()
setup(
name="kz_iin_validator",
version="0.7.1",
python_requires='>=3.7',
author="Zhymabek Roman",
author_email="robanokssamit@yandex.ru",
long_description=readme_description,
long_description_content_type="text/markdown",
include_package_data=True,
packages=find_packages(exclude=["tests", "images"]),
url="https://github.com/ZhymabekRoman/kz-iin-validator",
license="MIT",
description="Kazakhstan IIN parser and validator",
install_requires=read_requirements("requirements.txt"),
)