-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
26 lines (25 loc) · 831 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
from setuptools import setup, find_packages
setup(
name = "pypgTAP",
version = "0.1-DEV",
author = "Sid",
author_email = "itissid@gmail.com",
packages = find_packages(),
entry_points = {
'console_scripts':[
'start_harness = \
pypgtap.core.test_kit.postgres_env:start_postgres_harness',
'stop_harness = \
pypgtap.core.test_kit.postgres_env:stop_postgres_harness',
'run_all_tests = \
pypgtap.test_kit_scripts.run_all_tests:main'
]
},
package_data = {
"": ["*.yml"],
"pypgtap.core.glue": ["*.sql"]
},
install_requires = open("requirements.txt").read(),
description = "A project that brings python closer to pgTAP",
long_description = "\n" + open("README.md").read(),
)