forked from ranjaykrishna/visual_genome_python_driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (40 loc) · 1.42 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
# -*- coding: utf-8 -*-
"""Setup script for visual_genome."""
# Standard library imports
import os
# Third party imports
from setuptools import find_packages, setup
# Local imports
from visual_genome import __version__
HERE = os.path.abspath(os.path.dirname(__file__))
def get_description():
"""Get long description."""
with open(os.path.join(HERE, 'README.rst'), 'r') as f:
data = f.read()
return data
REQUIREMENTS = ['requests']
setup(
name='visual_genome',
version=__version__,
keywords=['Spyder', 'Plugin'],
url='https://github.com/ranjaykrishna/visual_genome_python_driver',
license='MIT',
author='Ranjay Krishna',
author_email='[email protected]',
description='A pure python wrapper for the Visual Genome API',
# long_description=get_description(),
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
install_requires=REQUIREMENTS,
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
])