-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 773 Bytes
/
setup.py
File metadata and controls
31 lines (28 loc) · 773 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
#!/usr/bin/python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
current_version = "1.8.2"
requirements = [
"confapp",
"pyserial",
"logging-bootstrap",
]
setup(
name="pybpod-api",
version=current_version,
description="""BPod Python API""",
author=[
"Joshua Sanders",
"Carlos Mão de Ferro",
"Ricardo Ribeiro",
"Luís Teixeira",
],
author_email="joshua21@gmail.com, cajomferro@gmail.com, ricardojvr@gmail.com, micboucinha@gmail.com",
license="MIT",
url="https://github.com/pybpod/pybpod-api",
include_package_data=True,
packages=find_packages(
exclude=["contrib", "docs", "tests", "examples", "deploy", "reports"]
),
install_requires=requirements,
)