Skip to content

Commit d3c1528

Browse files
committed
cleanup in MANIFEST.in & setup.py
1 parent 3e91753 commit d3c1528

File tree

4 files changed

+16
-20
lines changed

4 files changed

+16
-20
lines changed

.gitignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
*.pyc
22
*.egg
33
*.egg-info/
4-
dist
4+
.eggs/
5+
dist/
6+
build/
57

68
env/
79
venv/
8-
build/
910

1011
.coverage
1112
coverage.xml

MANIFEST

Lines changed: 0 additions & 14 deletions
This file was deleted.

MANIFEST.in

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
include LICENSE
2+
include README.md
3+
include setup.cfg
4+
5+
recursive-include testgres *.py
6+
recursive-include tests *.py
7+
8+
global-exclude *.pyc

setup.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,15 @@
1717
install_requires.append("ipaddress")
1818

1919
setup(
20+
version='1.5.0',
2021
name='testgres',
2122
packages=['testgres'],
22-
version='1.5.0',
2323
description='Testing utility for PostgreSQL and its extensions',
24+
url='https://github.com/postgrespro/testgres',
2425
license='PostgreSQL',
2526
author='Ildar Musin',
2627
author_email='[email protected]',
27-
url='https://github.com/postgrespro/testgres',
28-
keywords=['testing', 'postgresql'],
28+
keywords=['test', 'testing', 'postgresql'],
29+
install_requires=install_requires,
2930
classifiers=[],
30-
install_requires=install_requires)
31+
)

0 commit comments

Comments
 (0)