Skip to content

Commit 4c11772

Browse files
committed
Added requirements in the MANIFEST.in
1 parent c272e3a commit 4c11772

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

MANIFEST.in

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
include README.md
22
include requirements.txt
3-
include requirements_extra.txt
3+
include requirements_dev.txt
4+
include requirements_prod.txt
45
include LICENSE

requirements_dev.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
11
superannotate_schemas>=1.0.38.b1
2-

setup.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import sys
2-
31
from packaging.version import parse
42
from setuptools import find_packages, setup
53

@@ -10,12 +8,13 @@
108
requirements_path = "requirements_{}.txt".format('dev' if parse(version).is_prerelease else 'prod')
119
requirements = []
1210

13-
with open(requirements_path) as f:
11+
with open("requirements.txt") as f:
1412
requirements.extend(f.read().splitlines())
1513

16-
with open("requirements.txt") as f:
14+
with open(requirements_path) as f:
1715
requirements.extend(f.read().splitlines())
1816

17+
1918
with open('README.md') as f:
2019
readme = f.read()
2120

0 commit comments

Comments
 (0)