forked from freshrichard/smartytotwig
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
26 lines (24 loc) · 834 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
#!/usr/bin/env python
#from distutils.core import setup
from setuptools import setup, find_packages
import ConfigParser, os
# Read version.conf and use the version #.
config = ConfigParser.ConfigParser()
config.readfp(open('version.conf'))
setup(name="smartytotwig",
version=config.get('app:main', 'version'),
description="Converts Smarty templates into Twig templates.",
author="Ben Coe",
author_email="[email protected]",
entry_points={
'console_scripts': [
'smartytotwig = smartytotwig.main:main'
]
},
url="[email protected]:freshbooks/smartytotwig.git",
packages = find_packages(),
include_package_data=True,
setup_requires=['setuptools-git'],
install_requires = ['simplejson==2.1.1'],
tests_require=['nose', 'coverage'],
)