initial commit with most code completed

This commit is contained in:
Xevion
2019-12-24 03:52:15 -06:00
parent 41eed15692
commit 824d724784
4 changed files with 57 additions and 0 deletions

22
setup.py Normal file
View File

@@ -0,0 +1,22 @@
import os
import io
from setuptools import find_packages, setup
DEPENDENCIES = ['Click']
EXCLUDE_FROM_PACKAGES = []
CURDIR = os.path.dirname(__file__)
setup(
name="truefile",
version="1.0.0",
author="Xevion",
author_email="xevion@xevion.dev",
description="",
packages=find_packages(exclude=EXCLUDE_FROM_PACKAGES),
include_package_data=True,
entry_points='''
[console_scripts]
truefile=truefile.cli:cli
''',
install_requires=DEPENDENCIES,
)