blob: e52685089ae324e24560315b751880514f6ee271 [file] [log] [blame]
tiernoc0e42e22018-05-11 11:36:10 +02001#!/usr/bin/env python3
2
3import os
4from setuptools import setup
5
6_name = "osm_lcm"
7# version is at first line of osm_lcm/html_public/version
8here = os.path.abspath(os.path.dirname(__file__))
garciadeblas6b70e442018-05-25 15:50:58 +02009# VERSION = "4.0.1rc1"
tiernoc0e42e22018-05-11 11:36:10 +020010with open(os.path.join(here, 'README.rst')) as readme_file:
11 README = readme_file.read()
12
13setup(
14 name=_name,
15 description='OSM North Bound Interface',
16 long_description=README,
garciadeblas6b70e442018-05-25 15:50:58 +020017 version_command=('git describe --tags --long --dirty', 'pep440-git'),
18 # version=VERSION,
tiernoc0e42e22018-05-11 11:36:10 +020019 # python_requires='>3.5.0',
20 author='ETSI OSM',
21 author_email='alfonso.tiernosepulveda@telefonica.com',
22 maintainer='Alfonso Tierno',
23 maintainer_email='alfonso.tiernosepulveda@telefonica.com',
24 url='https://osm.etsi.org/gitweb/?p=osm/LCM.git;a=summary',
25 license='Apache 2.0',
26
27 packages=[_name],
28 include_package_data=True,
29 data_files=[('/etc/osm/', ['osm_lcm/lcm.cfg']),
tiernoc0e42e22018-05-11 11:36:10 +020030 ],
31 dependency_links=[
32 "git+https://osm.etsi.org/gerrit/osm/common.git@master#egg=osm-common-0.1.4"
33 ],
34 install_requires=[
35 'pymongo', 'PyYAML',
36 # 'osm-common',
37 ],
garciadeblas6b70e442018-05-25 15:50:58 +020038 setup_requires=['setuptools-version-command'],
tiernoc0e42e22018-05-11 11:36:10 +020039 # test_suite='nose.collector',
40 # entry_points='''
41 # [console_scripts]
42 # osm=osm_lcm.lcm:lcm
43 # ''',
44)