-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (38 loc) · 1.19 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
from setuptools import setup, find_packages
setup(
name="git-credential-github-app-auth",
author="Alex Ford",
author_email='fordas@uw.edu',
license="MIT license",
description="A git-credential helper for https access via GitHub Apps.",
url='https://github.com/uw-ipd/git-credential-github-app-auth',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
version='0.1.0',
packages=find_packages(),
entry_points={
'console_scripts' : [
'git-credential-github-app-auth='
'git_credential_github_app_auth.cli:cli',
]
},
python_requires='>=3.6',
install_requires=[
'click',
'PyJWT',
'requests',
'cryptography',
'attrs',
],
test_requires=["pytest"],
)