summaryrefslogtreecommitdiff
path: root/setup.py
blob: 8b73e6da35d77ad3fd5435359211d3effbbdc2ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup

setup(
    name="unbiased",
    version="0",
    packages=['unbiased'],
    package_data={
        'unbiased': [
            'html_template/*.html',
            'html_template/*.css',
        ],
    },
    install_requires=[
    ],
    entry_points={
        'console_scripts': [
            'unbiased = unbiased.main:main',
        ],
    },
)