forked from segasai/sqlutilpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
62 lines (55 loc) · 1.84 KB
/
setup.py
File metadata and controls
62 lines (55 loc) · 1.84 KB
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
52
53
54
55
56
57
58
59
60
61
62
from __future__ import print_function
import os
from setuptools import setup
import glob
import subprocess
def get_revision():
"""
Get the git revision of the code
Returns:
--------
revision : string
The string with the git revision
"""
try:
tmpout = subprocess.Popen(
'cd ' + os.path.dirname(__file__) + ' ; git log -n 1 --pretty=format:%H -- setup.py',
shell=True, bufsize=80, stdout=subprocess.PIPE).stdout
revision = tmpout.read().decode()[:6]
return revision
except:
return ''
# Utility function to read the README file.
# Used for the long_description. It's nice, because now 1) we have a top level
# README file and 2) it's easier to type in the README file than to put a raw
# string in below ...
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
exec(open('py/sqlutilpy/version.py','r').read())
VERSION =__version__
VERSION1 = get_revision()
if VERSION1 != '':
VERSION = VERSION+'-git-'+VERSION1
#VERSION = VERSIONPIP+'dev'+get_revision()
setup(
name = "sqlutilpy",
version = VERSION,
author = "Sergey Koposov",
author_email = "skoposov@cmu.edu",
description = ("Database query code returning numpy arrays"),
license = "BSD",
keywords = "numpy postgresql query sql sqlite array",
url = "https://github.com/segasai/sqlutilpy",
packages=['sqlutilpy'],
#scripts = [fname for fname in glob.glob(os.path.join('bin', '*'))],
package_dir={'':'py/'},
package_data={'sqlutilpy':['tests/']},
long_description=read('README.md'),
long_description_content_type='text/markdown',
install_requires=open('requirements.txt').readlines(),
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License",
],
)