forked from gabihodoroaga/jinja-csv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·32 lines (31 loc) · 995 Bytes
/
setup.py
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='jinja-csv',
version='0.3',
author="Raymond Chee, Gabriel Hodoroaga",
author_email="[email protected]",
description="Use Jinja templates to format data from CSV files",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/gabihodoroaga/jinja-csv",
package_dir={'': 'src'},
packages=['jinja_csv'],
include_package_data=True,
entry_points={'console_scripts': [
'jinja-csv = jinja_csv.jinja_csv:main',
]},
install_requires=[
'Jinja2==3.1.2',
'MarkupSafe==2.1.2',
'python-dateutil==2.6.0',
'six==1.12.0'
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
zip_safe=False
)