https://github.com/wiki-ai/wb-vandalism
Raw File
Tip revision: 9e5be9eca0a666a909874a83d2bb1c26f3810987 authored by Devin/Zppix on 30 October 2017, 21:43:52 UTC
Typo
Tip revision: 9e5be9e
setup.py
import os

from setuptools import find_packages, setup


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


def requirements(fname):
    for line in open(os.path.join(os.path.dirname(__file__), fname)):
        yield line.strip()

version = "0.1.8"

setup(
    name="wb_vandalism",
    version=version,
    author="Amir Sarabadani",
    author_email="Ladsgroup@gmail.com",
    description=("A library for performing automatic detection of vandalism in Wikidata."),
    license="MIT",
    url="https://github.com/Ladsgroup/wb-vandalism",
    packages=find_packages(),
    long_description=read('README.rst'),
    install_requires=list(requirements('requirements.txt')),
    classifiers=[
        "Development Status :: 3 - Alpha",
        "Topic :: Software Development :: Libraries :: Python Modules",
        "Programming Language :: Python",
        "Programming Language :: Python :: 3",
        "Intended Audience :: Developers",
        "License :: OSI Approved :: MIT License",
        "Operating System :: OS Independent",
        "Topic :: Utilities",
        "Topic :: Scientific/Engineering"
    ],
)
back to top