-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (23 loc) · 784 Bytes
/
setup.py
File metadata and controls
27 lines (23 loc) · 784 Bytes
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
#!/usr/bin/env python
import norsu
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
install_requires = ['toml', 'testgres']
# Get contents of README file
with open('README.md', 'r') as f:
readme = f.read()
setup(name='norsu',
version=norsu.__version__,
packages=['norsu'],
package_data={'norsu': ['data/*']},
license='MIT',
author='Dmitry Ivanov',
url='https://github.com/funbringer/norsu',
long_description=readme,
long_description_content_type='text/markdown',
description='PostgreSQL builds manager',
keywords=['PostgreSQL', 'postgres', 'install', 'test'],
install_requires=install_requires,
entry_points={'console_scripts': ['norsu = norsu.main:main']})