forked from neo4j-contrib/neomodel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (32 loc) · 1.38 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
import sys
from setuptools import setup, find_packages
setup(
name='neomodel',
version='4.0.0',
description='An object mapper for the neo4j graph database.',
long_description=open('README.rst').read(),
author='Robin Edwards',
author_email='robin.ge@gmail.com',
zip_safe=True,
url='http://github.com/neo4j-contrib/neomodel',
license='MIT',
packages=find_packages(exclude=('test', 'test.*')),
keywords='graph neo4j ORM OGM',
scripts=['scripts/neomodel_install_labels', 'scripts/neomodel_remove_labels'],
setup_requires=['pytest-runner'] if any(x in ('pytest', 'test') for x in sys.argv) else [],
tests_require=['pytest', 'shapely', 'neobolt'],
install_requires=['neo4j-driver==4.1', 'pytz>=2016.10', "Django==1.11.29",
"neobolt==1.7.17", "pytest==6.0.1", "Shapely==1.7.1"],
classifiers=[
"Development Status :: 5 - Production/Stable",
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Database",
])