setup.py


from distutils.core import setup
setup(
      name='pytest',
      version='0.1',
      description='Test library using CEDA framework',
      author='Fred Flintstone',
      author_email='fred.flintstone@bedrockgravel.com',
      platforms=['macOS','linux','windows'],
      url='www.bedrockgravel.com.au',
      license='contact author',
      packages=['pytest'],
      package_data = {
        'pytest' : ['lib/linux/*.so', 'lib/macOS/*.so', 'lib/windows/*.dll']
      }
)