2020
2121import os
2222try :
23- from setuptools import setup , find_packages
24- from setuptools .extension import Extension
23+ from setuptools import setup
2524except ImportError :
26- from distutils .core import setup , find_packages
27- from distutils .extension import Extension
25+ from distutils .core import setup
2826
2927
3028# Used for reading the README into long_description below.
3129def read (fname ):
3230 return open (os .path .join (os .path .dirname (__file__ ), fname )).read ()
3331
3432
35- packages = find_packages (exclude = ("test" , "test.*" ))
36-
37- setup (name = __package__ ,
38- version = "1.0.0" ,
39- description = "Python driver for Neo4j" ,
40- license = "Apache" ,
33+ setup (name = "neo4j-driver" ,
34+ version = "1.0.0-M01" ,
35+ description = "Neo4j Bolt driver for Python" ,
36+ license = "Apache License, Version 2.0" ,
4137 long_description = read ("README.rst" ),
4238 author = "Neo Technology" ,
4339 keywords = "neo4j graph database" ,
@@ -48,11 +44,6 @@ def read(fname):
4844 "Operating System :: OS Independent" ,
4945 "Topic :: Database" ,
5046 "Topic :: Software Development" ,
51- "Programming Language :: Python :: 2.6" ,
5247 "Programming Language :: Python :: 2.7" ,
53- "Programming Language :: Python :: 3.3" ,
54- "Programming Language :: Python :: 3.4" ,
55- "Programming Language :: Python :: 3.5" ,
56- "Programming Language :: Python :: Implementation :: Jython" ,
5748 ],
58- packages = packages )
49+ packages = [ "neo4j" ] )
0 commit comments