blob: c10a4f0c190e2f7560c6cbb4be5bb85071d0f7f4 [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"
tierno6aacb2e2018-10-01 15:28:59 +02008# VERSION = "4.0.0rc2"
tierno5c012612018-04-19 16:01:59 +02009README = open(os.path.join(here, 'README.rst')).read()
10
11setup(
tiernof7249402018-05-09 16:29:44 +020012 # python_requires='>=3.5',
tierno5c012612018-04-19 16:01:59 +020013 name=_name,
14 description='OSM common utilities',
15 long_description=README,
tierno6aacb2e2018-10-01 15:28:59 +020016 version_command=('git describe --tags --long --dirty', 'pep440-git-full'),
17 # version=VERSION,
tierno5c012612018-04-19 16:01:59 +020018 # python_requires='>3.5',
19 author='ETSI OSM',
20 author_email='alfonso.tiernosepulveda@telefonica.com',
21 maintainer='Alfonso Tierno',
22 maintainer_email='alfonso.tiernosepulveda@telefonica.com',
23 url='https://osm.etsi.org/gitweb/?p=osm/common.git;a=summary',
24 license='Apache 2.0',
tiernof7249402018-05-09 16:29:44 +020025 # setup_requires=['setuptools-version-command'],
tierno5c012612018-04-19 16:01:59 +020026
27 packages=[_name],
28 include_package_data=True,
29 # scripts=['nbi.py'],
30
31 install_requires=[
32 'pymongo',
33 'aiokafka',
34 'PyYAML',
tierno347bed32018-08-23 10:33:01 +000035 # 'pip',
tierno5c012612018-04-19 16:01:59 +020036 ],
37)