blob: 7dbb828eabb862302f92189d5e51bc5627d8927c [file] [log] [blame]
tierno5c012612018-04-19 16:01:59 +02001#!/usr/bin/env python3
2
3import os
4from setuptools import setup
5
6here = os.path.abspath(os.path.dirname(__file__))
7_name = "osm_common"
tierno3054f782018-04-25 16:59:53 +02008VERSION = "4.0.0rc1"
tierno5c012612018-04-19 16:01:59 +02009README = open(os.path.join(here, 'README.rst')).read()
10
11setup(
12 name=_name,
13 description='OSM common utilities',
14 long_description=README,
15 # version_command=('git describe --tags --long --dirty', 'pep440-git'),
16 version=VERSION,
17 # python_requires='>3.5',
18 author='ETSI OSM',
19 author_email='alfonso.tiernosepulveda@telefonica.com',
20 maintainer='Alfonso Tierno',
21 maintainer_email='alfonso.tiernosepulveda@telefonica.com',
22 url='https://osm.etsi.org/gitweb/?p=osm/common.git;a=summary',
23 license='Apache 2.0',
24
25 packages=[_name],
26 include_package_data=True,
27 # scripts=['nbi.py'],
28
29 install_requires=[
30 'pymongo',
31 'aiokafka',
32 'PyYAML',
33 ],
34)