-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
36 lines (34 loc) · 1.06 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
# Copyright (c) 2018 Kannan Subramani <[email protected]>
# SPDX-License-Identifier: GPL-3.0
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name="BIP",
version="1.0.0",
description="Bluetooth - Basic Imaging Profile",
author="Kannan Subramani <[email protected]>",
license="GPL-3.0",
classifiers=[
"Development Status :: 5 - In progress/Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development",
"Programming Language :: Python :: 2.7"
],
keywords="BIP",
packages=find_packages(),
zip_safe=False,
dependency_links=["https://bitbucket.org/dboddie/pyobex/get/tip.zip#egg=pyobex-0.26"],
install_requires=[
"cmd2",
"pillow",
"python-dateutil",
"pybluez",
"pyobex>=0.26"],
extra_require={
"develop": [
"generateDS==2.28b"
# TODO: Not sure how to add this as development dependency (not a python repo)
# dtd2xsd (https://github.com/reposit/dtd2xs)
]
}
)