-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (27 loc) · 1008 Bytes
/
setup.py
File metadata and controls
34 lines (27 loc) · 1008 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
33
34
import os
from setuptools import find_packages, setup
def requirements(fname):
return [line.strip()
for line in open(os.path.join(os.path.dirname(__file__), fname))]
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="propertysuggester",
version="3.0.0",
author="Wikidata team",
description=("Contains scripts for PropertySuggester to preprocess the "
"wikidata dumps"),
url="https://github.com/Wikidata-lib/PropertySuggester-Python",
packages=find_packages(),
long_description=read('README.md'),
install_requires=requirements("requirements.txt"),
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 2",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent"
],
)