-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
35 lines (32 loc) · 1.14 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
"""A setuptools based setup module.
See:
https://packaging.python.org/en/latest/distributing.html
https://github.com/pypa/sampleproject
"""
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="wikiwho_chobj",
version="1.1",
# Author details
author="",
author_email="[email protected]",
description="A change object generator",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/gesiscss/wikiwho_chobj",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
# What does your project relate to?
keywords='wikipedia wikiwho revisions content authorship',
# List run-time dependencies here. These will be installed by pip when
# your project is installed. For an analysis of "install_requires" vs pip's
# requirements files see:
# https://packaging.python.org/en/latest/requirements.html
install_requires=['numpy', 'wikiwho-pickle']
)