-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
30 lines (26 loc) · 953 Bytes
/
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
#!/usr/bin/env python3
import setuptools
import os
dir_path = os.path.dirname(os.path.realpath(__file__))
with open(os.path.join(dir_path, 'README.md')) as f:
long_description = f.read()
with open(os.path.join(dir_path, 'AUTHORS.txt')) as f:
authors = ', '.join([a.strip() for a in f.readlines()])
setuptools.setup(
name='sql_helper',
version='0.0.1',
description='Helper functions and classes for executing python unit tests that require interaction with a '
'postgres database',
long_description=long_description,
long_description_content_type="text/markdown",
author=authors,
author_email="mschwa@cs.toronto.edu",
packages=['sql_helper'],
install_requires=['psycopg2-binary>=2.8.6,<3'],
python_requires='>=3.3',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)