-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
38 lines (35 loc) · 1.04 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
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
with open(here + "/README.md", "r") as fh:
long_description = fh.read()
setup(
name="ontodev-cogs",
version="0.3.3",
description="COGS Operates Google Sheets",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ontodev/cogs",
author="Rebecca C Jackson",
author_email="[email protected]",
license="",
classifiers=[
"Programming Language :: Python :: 3",
"Environment :: Console",
"Operating System :: OS Independent",
"License :: OSI Approved :: BSD License",
],
packages=find_packages(exclude="tests"),
python_requires=">=3.6, <4",
install_requires=[
"daff",
"google",
"google-api-python-client",
"gspread",
"gspread-formatting",
"requests",
"tabulate",
"termcolor",
],
entry_points={"console_scripts": ["cogs=cogs.cli:main"]},
)