-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (47 loc) · 1.31 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
from setuptools import setup, find_packages
import sys, os
version = '0.2dev'
long_description = (
open('README.rst').read()
+ '\n' +
'Contributors\n'
'============\n'
+ '\n' +
open('CONTRIBUTORS.txt').read()
+ '\n' +
open('CHANGES.txt').read()
+ '\n')
setup(name='assentio',
version=version,
description="A minimal, lightweight flask-based blog",
long_description=long_description,
classifiers=[
"Programming Language :: Python",
],
keywords='',
author='Antonio Sagliocco',
author_email='[email protected]',
url='https://github.com/kalymero/assentio',
license='WTFPL',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
test_suite="assentio.tests",
install_requires=[
'setuptools',
'blinker',
'Flask',
'WTForms==1.0.1',
'Flask-admin==1.0.1',
'Flask-login',
'Flask-sqlalchemy',
'Flask-bcrypt',
'Flask-DebugToolbar',
'Flask-Script',
'PyRSS2Gen',
],
entry_points={
'console_scripts': ['runserver = assentio.main:runserver',
'manage = assentio.manage:manage']
}
)