17 lines
414 B
Python
17 lines
414 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='datagraph',
|
|
version='0.1.0',
|
|
description='Extensions to wikidata library',
|
|
author='Jmaa',
|
|
author_email='jonjmaa@gmail.com',
|
|
url='https://gitfub.space/Jmaa/socials-util',
|
|
packages=['datagraph'],
|
|
install_requires=['requests', 'ratelimit', 'wikidata'],
|
|
keywords=[],
|
|
classifiers=[],
|
|
include_package_data=True,
|
|
zip_safe=False
|
|
)
|