-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 795 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 795 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from os.path import abspath, dirname, join
import setuptools
aboutpath = join(abspath(dirname(__file__)),'ktxo','app', '_about.py')
_about = {}
with open(aboutpath) as fp:
exec(fp.read(), _about)
setuptools.setup(
name=_about["__name__"],
version=_about["__version__"],
author=_about["__author__"],
author_email=_about["__author_email__"],
description=_about["__description_message__"],
url=_about["__url__"],
entry_points={'console_scripts': ['main_template = ktxo.app.main_template:main']},
include_package_data=True,
license=_about['__license__'],
packages=setuptools.find_packages(include=['ktxo.*']),
python_requires='>=3.7',
install_requires=[],
classifiers=['Programming Language :: Python :: 3.7'],
keywords='app template'
)