-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
70 lines (61 loc) · 2.31 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
"""A setuptools based setup module.
See:
https://packaging.python.org/en/latest/distributing.html
https://github.com/pypa/sampleproject
"""
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
lines = long_description.split('\n')
lines = [l for l in lines if not ':alt' in l]
lines = [l for l in lines if not '.. figure::' in l]
setup(
name='gastrodon',
python_requires = '>=3.7',
description='Toolkit to display, analyze, and visualize data and documents based on RDF graphs and the SPARQL query language using Pandas, Jupyter, and other Python ecosystem tools.',
long_description="\n".join(lines),
url='https://github.com/paulhoule/gastrodon',
author='Paul Houle',
author_email='[email protected]',
license='MIT',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 5 - Production/Stable',
# Indicate who your project is intended for
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Intended Audience :: Financial and Insurance Industry',
'Intended Audience :: Healthcare Industry',
'Intended Audience :: Information Technology',
'Topic :: Database :: Front-Ends',
'Topic :: Documentation :: Sphinx',
'Topic :: Multimedia :: Graphics',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Markup :: HTML',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
],
# What does your project relate to?
keywords='sparql rdf rdflib pandas visualization',
packages=find_packages(exclude=['art','notebooks']),
install_requires=[
'rdflib',
'pyparsing',
'IPython',
'SPARQLWrapper',
'uritools',
'pandas',
'ipython-autotime',
'matplotlib',
'bs4',
'sphinx',
'html5lib'
],
version='1.0.0'
)