summarylogtreecommitdiffstats
path: root/setup.py
blob: ab7784519b20143a89cdd58c2599200a59d6d1bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import os
from setuptools import setup, find_packages

def read(fname):
    return open(os.path.join(os.path.dirname(__file__), fname)).read()

setup(
    name = "pugdebug",
    version = ":version:",
    author = "robertbasic",
    description = ("A standalone debugging client for PHP applications."),
    license = "GPLv3+",
    url = "https://github.com/robertbasic/pugdebug",
    packages=find_packages(),
    long_description=read('README.md'),
)