-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (48 loc) · 1.34 KB
/
Copy pathsetup.py
File metadata and controls
50 lines (48 loc) · 1.34 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
from pip.req import parse_requirements
REQUIREMENTS = parse_requirements('requirements.txt')
with open(os.path.join(os.path.dirname(__file__), 'README.mkd')) as readme:
README = readme.read()
setup(
name='ltmo',
version='0.14',
description="light weight blogging, heavy weight time-wasting",
long_description=README,
# Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='Blog, Django',
author='Inventta',
author_email='maturburu@gmail.com',
url='http://ltmo.com.ar',
packages=find_packages('leaks', 'banners', 'ltmo'),
package_data={
'ltmo': ['templates/*.html'],
},
include_package_data=True,
zip_safe=False,
entry_points={
'console_scripts': [
'manage = ltmo.manage:do_manage',
],
},
install_requires=[
'django',
'Pillow',
'markdown',
'pygments',
'django-tagging',
'django-pagination',
'django-registration',
'python-social-auth',
'django-debug-toolbar',
'markdown',
'pygments',
'south',
#'psycopg2',
]
)