Skip to content

Commit

Permalink
Add initial setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
dgilman committed Oct 13, 2018
1 parent 108315a commit 463f085
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
build
dist
*.egg-info

venv
version_tag
wheeltest
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@


wheel:
python setup.py sdist bdist_wheel
File renamed without changes.
37 changes: 37 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
import os.path

import setuptools

def read(filename):
return open(os.path.join(os.path.dirname(__file__), filename)).read()

setuptools.setup(
name='gspread_asyncio',
version=read('version_tag'),
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 :: 4 - Beta',
'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": "gh pages",
"Source": "https://github.com/dgilman/gspread_asyncio",
"Tracker": "https://github.com/dgilman/gspread_asyncio/issues"
},
python_requires='>=3.5',
packages=setuptools.find_packages(),
install_requires=['requests==2.*', 'gspread==3.*']
)

0 comments on commit 463f085

Please sign in to comment.