-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (39 loc) · 1.33 KB
/
setup.py
File metadata and controls
46 lines (39 loc) · 1.33 KB
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
45
46
import os
from distutils.core import setup
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='mwevents',
version=read('VERSION').strip(),
author='Aaron Halfaker',
author_email='aaron.halfaker@gmail.com',
packages=find_packages(),
scripts=[],
url='http://pypi.python.org/pypi/mwevents',
license=open('LICENSE').read(),
description='Standardized public MediaWiki events for tools and Science.',
long_description=read('README.rst'),
install_requires=[
'phpserialize',
'mediawiki-utilities',
'jsonable'
],
test_suite='nose.collector',
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: General",
"Topic :: Utilities",
"Topic :: Scientific/Engineering"
],
)