summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: 1704215cf3905656cde22606bd71ceb913ab8764 (plain) (blame)
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
# -*- coding: utf-8 -*-
#
#   SPDX-License-Identifier: ISC
#
#   Copyright (C) 2019 rsiddharth <s@ricketyspace.net>
#
#   This file is part of nfsw.
#

from setuptools import find_packages, setup

with open('README.md', 'r') as f:
    ldesc = f.read()


setup(
    name='nfsw',
    version='0.2.3',
    license='ISC',
    author='rsiddharth',
    author_email='s@ricketyspace.net',
    description='A quirky text based adverture',
    long_description=ldesc,
    long_description_content_type='text/markdown',
    url='https://ricketyspace.net/nfsw',
    packages=find_packages(),
    include_package_data=True,
    classifiers=[
        'Development Status :: 3 - Alpha',
        'Environment :: Web Environment',
        'Framework :: Flask',
        'License :: OSI Approved :: ISC License (ISCL)',
        'Operating System :: POSIX :: BSD :: OpenBSD',
        'Topic :: Games/Entertainment',
    ],
    platforms='OpenBSD',
    zip_safe=False,
    install_requires=[
        'flask==1.1.1',
        'redis==3.3.8',
        'uwsgi==2.0.18'
    ]
)