from setuptools import setup, find_packages

setup(
    name="Choam",
    version="0.1.7",
    description="Python project scaffolder/manager",
    packages=find_packages(),
    keywords=['package', 'manager'],
    install_requires=['wheel', 'twine', 'findimports', 'importlib', 'choam', 'toml', 'typing', 'fire', 'platform'],
    project_urls={
        'Source': 'https://github.com/cowboycodr/choam'
    },
)