-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add setup.py, move code into angular2tmpl directory, and submit to PyPI.
- Loading branch information
Showing
10 changed files
with
40 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/usr/bin/env python | ||
|
||
from setuptools import setup, find_packages | ||
|
||
setup( | ||
name='angular2tmpl', | ||
version='0.1.0', | ||
packages=find_packages(), | ||
scripts=['bin/angular2tmpl'], | ||
author='Eitan Mosenkis', | ||
author_email='[email protected]', | ||
description='Convert AngularJS templates to Jinja2 templates for SEO.', | ||
long_description=open('README.rst').read(), | ||
license='MIT', | ||
keywords='angularjs jinja2 seo', | ||
url='https://github.com/emosenkis/angular2tmpl', | ||
install_requires=['html5lib >= 1.0b3', 'Jinja2 >= 2.7.1'] | ||
) |