forked from dkavanagh/skill-for-github
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (27 loc) · 626 Bytes
/
setup.py
File metadata and controls
34 lines (27 loc) · 626 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
25
26
27
28
29
30
31
32
33
34
import os.path
from setuptools import setup, find_packages
__version__ = 'devel'
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md')) as f:
README = f.read()
requires = [
'PyGithub',
]
dev_extras = [
'emulambda',
]
setup(
name='skill-for-github',
version=__version__,
description='Alexa skill for GitHub',
long_description=README,
classifiers=[
"Programming Language :: Python",
],
author='David Kavanagh',
author_email='dkavanagh@gmail.com',
url='',
keywords='',
packages=find_packages(),
test_suite='tests'
)