Skip to content

Commit 011e905

Browse files
committed
updates versioning strategy and adds mediawiki-utilities and more-itertools as install dependencies.
1 parent 4b5e6f6 commit 011e905

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

VERSION

Lines changed: 0 additions & 1 deletion
This file was deleted.

mwcites/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
from .identifier import Identifier
2+
3+
__version__ = "0.1.0"

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import os
22

33
from setuptools import find_packages, setup
4-
4+
import mwcites
55

66
def read(fname):
77
return open(os.path.join(os.path.dirname(__file__), fname)).read()
@@ -12,7 +12,7 @@ def requirements(fname):
1212

1313
setup(
1414
name = "mwcites",
15-
version = read('VERSION').strip(),
15+
version = mwcites.__version__,
1616
author = "Aaron Halfaker",
1717
author_email = "[email protected]",
1818
description = "A collection of scripts and utilities for extracting " +
@@ -27,7 +27,7 @@ def requirements(fname):
2727
],
2828
},
2929
long_description = read('README.rst'),
30-
install_requires = ['docopt'],
30+
install_requires = ['docopt', 'more-itertools', 'mediawiki-utilities'],
3131
classifiers=[
3232
"Programming Language :: Python :: 3",
3333
"Development Status :: 3 - Alpha",

0 commit comments

Comments
 (0)