-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
executable file
·30 lines (29 loc) · 1 KB
/
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
from setuptools import setup, find_packages
setup(
name='thememapper.core',
version='0.7.0',
description='thememapper for Diazo',
long_description=open('README.rst').read(),
author='Brandon Tilstra',
author_email='tilstra@gmail.com',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['thememapper'],
package_dir={'static': 'thememapper/static','templates': 'thememapper/templates'},
include_package_data=True,
license='gpl',
url='http://pypi.python.org/pypi/thememapper/',
classifiers=[
"License :: OSI Approved :: GNU General Public License (GPL)",
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Internet",
],
install_requires=['Flask','requests','tornado'],
entry_points = {
'console_scripts': [
'thememapper = thememapper.core.main:start_thememapper'
]
},
zip_safe=False
)