02a7b2d5d8
* 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
19 lines
602 B
Python
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",
|
|
)
|