-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 721 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (22 loc) · 721 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import setuptools
setuptools.setup(
name = 'pyazdvops',
version = '1.0.3',
description = 'Library for Azure DevOps API for Python',
author = 'Faizal Sidek',
author_email = 'faizal.sidek@gmail.com',
license = 'Free for non-commercial use',
packages = ['azdvop'],
zip_safe = False,
install_requires = ['requests','redis'],
url = 'https://github.com/rockraft7/pyazdevops',
keywords = ['Azure', 'DevOps', 'Python', 'API'],
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'License :: Free for non-commercial use',
'Natural Language :: English',
'Programming Language :: Python :: 2.7'
]
)