-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
45 lines (38 loc) · 1.4 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
41
42
43
44
45
import os.path
import setuptools
def read(filename):
return open(os.path.join(os.path.dirname(__file__), filename)).read()
try:
version = read("version_tag").strip()
except OSError:
version = "1.99dev"
install_reqs = [x.strip() for x in open("requirements.in")]
setuptools.setup(
name="gspread_asyncio",
version=version,
description="asyncio wrapper for burnash's Google Spreadsheet API library, gspread",
long_description=read("README.md"),
long_description_content_type="text/markdown",
url="https://github.com/dgilman/gspread_asyncio",
author="David Gilman",
author_email="dgilman@gilslotd.com",
license="MIT",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
],
keywords=["spreadsheets", "google-spreadsheets", "asyncio"],
project_urls={
"Documentation": "https://gspread-asyncio.readthedocs.io/en/latest/",
"Source": "https://github.com/dgilman/gspread_asyncio",
"Tracker": "https://github.com/dgilman/gspread_asyncio/issues",
},
python_requires=">=3.8",
packages=setuptools.find_packages(),
install_requires=install_reqs,
)