blob: f16670aa1bca435f48727009c5b35e7332523d24 [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"
tiernoc312cc12018-05-04 15:11:26 +02008VERSION = "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,
16 # version_command=('git describe --tags --long --dirty', 'pep440-git'),
17 version=VERSION,
18 # 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)