setup.py 264 Bytes
#!/usr/bin/env python3

# EP added this file on 18-10-2018 for testing a new way for pyros installation

from setuptools import setup, find_packages

setup(name='pyros',
      version='20181018.0.012',
      packages=find_packages(),
      scripts=['manage.py']
)