from setuptools import setup setup(name='megacom', version='0.1', description='Sample text', url='https://example.com', author='John Smith', author_email='none@example.com', license='Undecided', packages=['megacom'], install_requires=[ ], include_package_data=True, entry_points={ 'console_scripts': [ ] }, zip_safe=False)