-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 721 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (25 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
24
25
26
27
28
"""setup
openbts-python package definition
"""
from setuptools import setup
# pull all the requirements from the pip-freezed file
with open('requirements.txt') as f:
required_libs = f.readlines()
# load the readme
with open('readme.md') as f:
readme = f.read()
setup(
name='openbts',
version='0.0.3',
description='OpenBTS NodeManager client',
long_description=readme,
url='http://github.com/yosemitebandit/openbts-python',
download_url='https://github.com/yosemitebandit/openbts-python/tarball/'
'0.0.3',
author='Matt Ball',
author_email='matt.ball.2@gmail.com',
license='MIT',
packages=['openbts'],
install_requires=required_libs,
zip_safe=False
)