This repository has been archived on 2024-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
carboncopy/setup.py
Marc Cataford 02a7b2d5d8
Initial upload (#1)
* feat: minimal working version

* chore: clean swap files

* chore: amend gitignore to include swaps

* chore: typecheck

* wip: ignore git, support dir

* wip: ignores, directory handling

* wip: add prompting, better path management

* refactor: centralize printing

* wip: handle jsondecodeerror

* docs: README

* chore: add inquirer to dependencies

* wip: error handling when not in git
2020-01-05 14:46:10 -05:00

19 lines
602 B
Python

import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
entry_points={"console_scripts": ["carboncopy = src.carboncopy.main:run"]},
name="carboncopy",
version="0.0.1",
author="Marc Cataford",
author_email="c.marcandre@gmail.com",
description="A small CLI utility to keep your repositories up-to-date with their templates",
long_description=long_description,
url="",
packages=setuptools.find_packages(),
classifiers=[],
install_requires=["requests>=2.22.0", "inquirer==2.6.3"],
python_requires=">=3.6",
)