forked from neo4j-contrib/neomodel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (31 loc) · 1.27 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
import sys
from setuptools import setup, find_packages
setup(
name='neomodel',
version='3.3.2',
description='An object mapper for the neo4j graph database.',
long_description=open('README.rst').read(),
author='Robin Edwards',
author_email='[email protected]',
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'],
install_requires=['neo4j==4.0.0a4', 'pytz>=2016.10'],
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 :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Database",
])