forked from goldsmith/Wikipedia
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (28 loc) · 872 Bytes
/
Copy pathsetup.py
File metadata and controls
32 lines (28 loc) · 872 Bytes
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
# -*- coding: utf-8 -*-
import os
from setuptools import setup
from io import open
long_description = open(os.path.join(os.path.dirname(__file__), "README.rst"), encoding='utf-8').read().encode('ascii', 'ignore')
dependencies = [
"beautifulsoup4",
"requests==1.2.3"
"wsgiref==0.1.2"
]
setup(
name = "wikipedia",
version = "0.9.8",
author = "Jonathan Goldsmith",
author_email = "jhghank@gmail.com",
description = "Wikipedia API for Python",
license = "MIT",
keywords = "python wikipedia API",
url = "https://github.com/goldsmith/Wikipedia",
install_requires = dependencies,
packages = ['wikipedia'],
long_description = long_description,
classifiers = (
'Development Status :: 3 - Alpha',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: MIT License',
),
)