-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (45 loc) · 1.24 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
"""Setup package file for blogsite."""
from setuptools import setup
def readme():
"""Read in the readme file."""
with open('readme.md') as f:
return f.read()
setup(
name='blogsite',
version='0.1.0',
description='Minimal blogging website',
long_description=readme(),
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Framework :: Flask',
'Intended Audience :: Education',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: News/Diary',
],
keywords='blog website flask minimal',
url='https://github.com/paulaylingdev/blogsite',
author='Paul Ayling',
author_email='[email protected]',
license='MIT',
packages=['blogsite'],
include_package_data=True,
install_requires=[
'cssmin',
'flask',
'flask-sqlalchemy',
'flask-assets',
'Flask-HTMLmin',
'Flask-WTF',
'Flask-Bcrypt',
],
setup_requires=[
'pytest-runner',
],
tests_require=[
'pytest',
],
)