49
|
1 from ez_setup import use_setuptools
|
|
2 use_setuptools()
|
|
3 from setuptools import setup, find_packages
|
|
4
|
|
5 classifiers = """Development Status :: 4 - Beta
|
|
6 Intended Audience :: Information Technology
|
|
7 License :: OSI Approved :: MIT License
|
|
8 Programming Language :: Python
|
|
9 Programming Language :: SQL
|
|
10 Topic :: Database :: Front-Ends
|
|
11 Operating System :: OS Independent""".splitlines()
|
|
12
|
|
13 setup(name="sqlpython",
|
|
14 version="1.4.0",
|
|
15 description="Command-line interface to Oracle",
|
|
16 long_description="Customizable alternative to Oracle's SQL*PLUS command-line interface",
|
|
17 author="Luca Canali",
|
|
18 author_email="luca.canali@cern.ch",
|
|
19 url="https://twiki.cern.ch/twiki/bin/view/PSSGroup/SqlPython",
|
|
20 packages=find_packages(),
|
|
21 install_requires=['pyparsing','cmd2','cx_Oracle'],
|
|
22 keywords = 'client oracle database',
|
|
23 features = 'pexpect',
|
|
24 classifiers = classifiers,
|
|
25 license = 'MIT',
|
|
26 maintainer = 'Catherine Devlin',
|
|
27 maintainer_email = 'catherine.devlin@gmail.com',
|
|
28 platforms = ['any'],
|
|
29 entry_points={
|
|
30 "console_scripts": [
|
|
31 "sqlpython = mysqlpy:run",]
|
|
32 },
|
|
33 )
|
|
34
|
|
35
|