File: setup.py

package info (click to toggle)
flask-multistatic 1.0-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 140 kB
  • sloc: python: 73; makefile: 6
file content (31 lines) | stat: -rw-r--r-- 948 bytes parent folder | download | duplicates (3)
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
#!/usr/bin/env python
"""
Setup script
"""

from setuptools import setup

setup(
    name='flask-multistatic',
    description='Simple flask plugin to allow overriding static files',
    version='1.0',
    author='Pierre-Yves Chibon',
    author_email='pingou@pingoured.fr',
    license='GPLv3+',
    download_url='https://pagure.io/releases/flask-multistatic/',
    url='https://pagure.io/flask-multistatic',
    py_modules=['flask_multistatic'],
    install_requires=['flask'],
    classifiers=[
        'Development Status :: 5 - Production/Stable',
        'Intended Audience :: Developers',
        'License :: OSI Approved :: GNU General Public License v3 or later '
        '(GPLv3+)',
        'Operating System :: OS Independent',
        'Programming Language :: Python :: 2.6',
        'Programming Language :: Python :: 2.7',
        'Programming Language :: Python :: 3',
        'Topic :: Software Development :: Libraries',
    ],
)