Make it pipable
This commit is contained in:
parent
62b35274e9
commit
474abdc99d
@ -1,4 +1,6 @@
|
||||
appdirs==1.4.3
|
||||
Jinja2==2.9.6
|
||||
MarkupSafe==1.0
|
||||
packaging==16.8
|
||||
pyparsing==2.2.0
|
||||
six==1.10.0
|
||||
|
18
setup.py
18
setup.py
@ -0,0 +1,18 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
|
||||
setup(
|
||||
name='Pytex',
|
||||
version='0.1',
|
||||
description='Writing latex files and compile it with python and jinja2',
|
||||
author='Benjamin Bertrand',
|
||||
author_email='lafrite@poneyworld.net',
|
||||
include_package_data=True,
|
||||
packages=find_packages(),
|
||||
install_requires=[
|
||||
'jinja2',
|
||||
'path.py',
|
||||
],
|
||||
)
|
Loading…
Reference in New Issue
Block a user