-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
40 lines (37 loc) · 1.3 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
#!/usr/bin/env python
from setuptools import setup, find_packages
requirements = [
"requests>2,<3",
"google-auth-httplib2<1",
"google-api-python-client>1,<2",
"google-auth>1,<2",
]
test_requirements = ["pytest", "pytest-cov", "pytest-mock", "coverage"]
with open("README.md", "r") as readme_file:
readme = readme_file.read()
setup(
version_config=True,
setup_requires=["setuptools-git-versioning", "pytest-runner"],
name="gmail-wrapper",
description="Because scrapping Gmail data doesn't have to be a pain",
long_description=readme,
long_description_content_type="text/markdown",
author="Loadsmart Inc.",
author_email="[email protected]",
url="https://github.com/loadsmart/gmail-wrapper",
packages=find_packages(exclude=["tests"]),
install_requires=requirements,
keywords=["gmail"],
classifiers=[
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
test_suite="tests",
tests_require=test_requirements,
)