-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 813 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
30
from setuptools import find_packages, setup
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="lost-n-phoned",
version="1.0.0",
maintainer="Keane Nguyen",
maintainer_email="[email protected]",
description="Get your contacts from a stranger's phone",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ljacob15/lost-and-phoned",
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
"flask",
"requests",
"google-auth",
"google-auth-oauthlib",
"google-auth-httplib2",
"google-api-python-client",
"twilio",
"phonenumberslite",
"schedule"
],
python_requires=">=3.4",
)