-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (29 loc) · 782 Bytes
/
Copy pathsetup.py
File metadata and controls
32 lines (29 loc) · 782 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
25
26
27
28
29
30
31
32
from setuptools import setup
REPO_URL = 'http://github.com/jtemporal/autogenfiles'
with open('README.md') as fobj:
long_description = fobj.read()
setup(
author='Jessica Temporal',
author_email='hello@jtemporal.com',
description='Auto generate files based on a template',
zip_safe=False,
install_requires=[
'click==8.0.1',
'Jinja2==3.0.1'
],
keywords='auto generate files, jinja, templates, cli',
license='MIT',
long_description=long_description,
name='autogenfiles',
packages=[
'autogenfiles'
],
entry_points={
'console_scripts': [
'autogenfiles = autogenfiles.autogenfiles:AutoGenFiles',
],
},
url=REPO_URL,
python_requires='>=3.8.2',
version='0.0.4',
)