forked from mediawiki-utilities/python-mwpersistence
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (38 loc) · 1.42 KB
/
setup.py
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
44
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()
setup(
name="mwpersistence",
version="0.2.4", # see mwpersistence/__init__.py
author="Aaron Halfaker",
author_email="[email protected]",
description="A set of utilities for measuring content persistence and " +
"tracking authorship in MediaWiki revisions.",
license="MIT",
url="https://github.com/mediawiki-utilities/python-mwpersistence",
packages=find_packages(),
entry_points={
'console_scripts': [
'mwpersistence=mwpersistence.mwpersistence:main'
],
},
long_description=read('README.md'),
install_requires=list(requirements('requirements.txt')),
classifiers=[
"Development Status :: 4 - Beta",
"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 :: Text Processing :: Linguistic",
"Topic :: Text Processing :: General",
"Topic :: Utilities",
"Topic :: Scientific/Engineering"
],
)