-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (21 loc) · 704 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (21 loc) · 704 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup, find_packages
import os.path
with open('README.md', 'r') as readme:
long_description = readme.read()
setup(
name = 'pb4py',
version = '1.0.0.0',
description = 'Python API for PushBullet',
long_description = long_description,
author = ['sgthotshot', 'cadyyan'],
url = 'https://www.sgthotshot.com/pb4py',
download_url = 'https://github.com/SgtHotshot/pb4py/tarball/1.1',
packages = find_packages(),
scripts = [os.path.join('scripts', 'pb4.py')],
keywords = ['PushBullet', 'notifications', 'messaging'],
classifiers = [],
install_requires = [
'requests',
'tabulate',
],
)