-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (25 loc) · 794 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
29
"""Python setup.py for sms-activate-email package"""
import io
import os
from setuptools import find_packages, setup
def read(*paths, **kwargs):
content = ""
with io.open(
os.path.join(os.path.dirname(__file__), *paths),
encoding=kwargs.get("encoding", "utf8"),
) as open_file:
content = open_file.read().strip()
return content
setup(
name="sms-activate-email",
version=read("sms_activate_email", "VERSION"),
description="SMS-Activate Email API",
long_description=read("README.md"),
long_description_content_type="text/markdown",
packages=find_packages(exclude=["tests", ".github"]),
install_requires=[
'setuptools~=68.2.0',
'requests~=2.31.0'
],
package_data={"sms_activate_email": ["VERSION"]}
)